熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP系統命令函數使用分析

2022-06-13   來源: PHP編程 
本篇文章是對PHP中系統命令函數的使用進行了詳細的分析介紹需要的朋友參考下   復制代碼 代碼如下:

  
function execute($cmd) {
     $res = ;
     if ($cmd) {
         if(function_exists(system)) {
             @ob_start();
             @system($cmd);
             $res = @ob_get_contents();
             @ob_end_clean();
         } elseif(function_exists(passthru)) {
             @ob_start();
             @passthru($cmd);
             $res = @ob_get_contents();
             @ob_end_clean();
         } elseif(function_exists(shell_exec)) {
             $res = @shell_exec($cmd);
         } elseif(function_exists(exec)) {
             @exec($cmd$res);
             $res = join(“n"$res);
         } elseif(@is_resource($f = @popen($cmd"r"))) {
             $res = ;
             while(!@feof($f)) {
                 $res = @fread($f);
             }
             @pclose($f);
         }
     }
     return $res;
 }


From:http://tw.wingwit.com/Article/program/PHP/201311/20961.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.