定義和用法popen() 函數使用command 參數開啟進程檔案指標。如果出錯,則函數傳回FALSE。文法popen(command,mode)參數描述command必需。規定要執行的命令。 mode必需。規定連接模式。可能的值: r: 只讀。 w: 只寫(開啟並清空已有檔案或建立新檔案)實例<?php$file = popen("/bin/ls","r");//some code to be executedpclose($file);?>