最新的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文件系統參考