PHP专门提供了三个执行外部命令的函数:system(),exec(),passthru()
先说exec()
官方介绍文档:http://www.php.net/manual/en/function.exec.php
string exec ( string $command [, array &$output [, int &$return_var ]] )
window下测试:
<?php
$i = 0;
exec('ipconfig /all', $response);
foreach($response as $line) {
echo ($line."\n");
}
?>
直接返回执行的结果,或使用变量获取一行行执行结果。
关键字词: