最新的Web开发教程
 

PHP popen() Function


<完整PHP文件系统参考

定义和用法

所述popen()函数打开一个管道在命令参数中指定的程序。

如果发生错误,该函数返回FALSE。

句法

popen(command,mode)

参数 描述
command 需要。 指定要执行的命令
mode 需要。 指定连接模式。

可能的值:

  • R:只读
  • 女:只写(opens and clears existing file or creates a new file)

<?php
$file = popen("/bin/ls","r");
//some code to be executed
pclose($file);
?>

<完整PHP文件系统参考