目录

PHP popen() 函数

❮ PHP 文件系统参考

示例

打开到指定程序的管道命令范围:

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


定义和用法

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

语法

popen( command, mode)

参数值

Parameter Description
command Required. Specifies the command to execute
mode Required. Specifies the connection mode. Can be "r" (Read only) or "w" (Write only - opens and clears existing file or creates a new file)


技术细节

返回值: 失败时为 FALSE
PHP 版本: 4.0+

❮ PHP 文件系统参考