PHP popen() 函數(shù)
PHP popen() 函數(shù)

定義和用法
popen() 函數(shù)使用 command 參數(shù)打開(kāi)進(jìn)程文件指針。
如果出錯(cuò),該函數(shù)返回 FALSE。
語(yǔ)法
popen(command,mode)
參數(shù) | 描述 |
---|---|
command | 必需。規(guī)定要執(zhí)行的命令。 |
mode | 必需。規(guī)定連接模式。 可能的值:
|
實(shí)例
<?php
$file = popen("/bin/ls","r");
//some code to be executed
pclose($file);
?>
$file = popen("/bin/ls","r");
//some code to be executed
pclose($file);
?>

相關(guān)文章
- PHP 類(lèi)型比較
- PHP If Else 語(yǔ)句
- PHP 文件上傳
- PHP 異常處理
- PHP array_count_values() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP compact() 函數(shù)
- PHP key() 函數(shù)
- PHP krsort() 函數(shù)
- PHP ksort() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP 雜項(xiàng) 函數(shù)