当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > popen() 函数
The popen() function opens a pipe to the program specified in the command parameter.
popen()函数的作用是:使用命令[command]参数打开进程文件指针。
This function returns FALSE if an error occurs.
如果函数执行失败,将返回False。
popen(command,mode) |
Parameter 参数 | Description 描述 |
---|---|
command | Required. Specifies the command to execute 必要参数。指定需要执行的命令参数 |
mode | Required. Specifies the connection mode. 必要参数。指定连接模式 Possible values:
|
<?php $file = popen("/bin/ls","r"); //some code to be executed pclose($file); ?> |