popen() 函数使用 command 参数打开进程文件指针。
如果出错,该函数返回 FALSE。
popen(command,mode)
可能的值:
<?php $file = popen("/bin/ls","r"); //some code to be executed pclose($file); ?>