php中system函数的用法是什么

avatar
作者
筋斗云
阅读量:0

在PHP中,system()函数用于执行外部命令并显示输出。其语法如下:

system(string $command, int &$return_var): string|false 

参数说明:

  • $command:要执行的外部命令。
  • $return_var:用于存储命令执行的返回值。
  • 返回值:如果成功执行命令,则返回命令的输出;如果失败,则返回false

示例:

$output = system('ls -l', $return_var); echo "Command returned $return_var and output: $output"; 

需要注意的是,system()函数会直接输出命令执行的结果,如果需要获取命令执行的结果并进行处理,可以使用shell_exec()函数。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!