監(jiān)理公司管理系統(tǒng) | 工程企業(yè)管理系統(tǒng) | OA系統(tǒng) | ERP系統(tǒng) | 造價咨詢管理系統(tǒng) | 工程設計管理系統(tǒng) | 甲方項目管理系統(tǒng) | 簽約案例 | 客戶案例 | 在線試用
X 關閉
新余網(wǎng)站建設公司

當前位置:工程項目OA系統(tǒng) > 泛普各地 > 江西OA系統(tǒng) > 新余OA > 新余網(wǎng)站建設公司

PHP調(diào)用Linux系統(tǒng)的常用函數(shù)

申請免費試用、咨詢電話:400-8352-114

PHP調(diào)用Linux系統(tǒng)的常用函數(shù)

  1、exec函數(shù)

  <?php

  $test = "ls /tmp/test"; //ls是linux下的查目錄,文件的命令

  exec($test,$array); //執(zhí)行命令

  print_r($array);

  ?>

  2、system函數(shù)

  <?php

  $test = "ls /tmp/test";

  $last = system($test);

  print "last: $lastn";

  ?>

  3、passthru函數(shù)

  <?php

  $test = "ls /tmp/test";

  passthru($test);

  ?>

  4、popen函數(shù)

  <?php

  $test = "ls /tmp/test";

  $fp = popen($test,"r"); //popen打一個進程通道

  while (!feof($fp)) { //從通道里面取得東西

  $out = fgets($fp, 4096);

  echo $out; //打印出來

  }

  pclose($fp);

  ?>

  5、proc_open函數(shù)

  <?php

  $test = "ls /tmp/test";

 

  $arrayarray = array(

  array("pipe","r"), //標準輸入

  array("pipe","w"), //標準輸出內(nèi)容

  array("pipe","w") //標準輸出錯誤

  );

  $fp = proc_open($test,$array,$pipes); //打開一個進程通道

  echo stream_get_contents($pipes[1]); //為什么是$pipes[1],因為1是輸出內(nèi)容

  proc_close($fp);

  ?>

  6、proc_open函數(shù)

  <?php

  $test = "ls /tmp/test";

  $arrayarray = array(

  array("pipe","r"), //標準輸入

  array("pipe","w"), //標準輸出內(nèi)容

  array("pipe","w") //標準輸出錯誤

  );

  $fp = proc_open($test,$array,$pipes); //打開一個進程通道

  echo stream_get_contents($pipes[1]); //為什么是$pipes[1],因為1是輸出內(nèi)容

  proc_close($fp);

  ?>

  7、shell_exec函數(shù)

  <?php

  $test = "ls /tmp/test";

  $out = shell_exec($test);

  echo $out;

  ?>

發(fā)布:2007-03-31 15:14    編輯:泛普軟件 · xiaona    [打印此頁]    [關閉]
相關文章:
新余OA
聯(lián)系方式

成都公司:成都市成華區(qū)建設南路160號1層9號

重慶公司:重慶市江北區(qū)紅旗河溝華創(chuàng)商務大廈18樓

咨詢:400-8352-114

加微信,免費獲取試用系統(tǒng)

QQ在線咨詢

泛普新余網(wǎng)站建設公司其他應用

新余軟件開發(fā)公司 新余門禁系統(tǒng) 新余物業(yè)管理軟件 新余倉庫管理軟件 新余餐飲管理軟件 新余網(wǎng)站建設公司