主頁 > 知識庫 > PHP執(zhí)行普通shell命令流程解析

PHP執(zhí)行普通shell命令流程解析

熱門標簽:梧州市機器人外呼系統(tǒng)怎么樣 如何在世界地圖標注 公司外呼系統(tǒng)中心 天客通地圖標注 臨沂crm外呼系統(tǒng)平臺 廈門400電話辦理選易號網(wǎng) 電子地圖標注怎么修改 菏澤語音外呼系統(tǒng)運營商 地圖標注符號樣式有

這里演示一些普通的shell命令

  php執(zhí)行shell命令,可以使用下面幾個函數(shù):

string system ( string $command [, int $return_var ] )
string exec ( string $command [, array $output [, int $return_var ]] )
void passthru ( string $command [, int $return_var ] )

  注意的是:這三個函數(shù)在默認的情況下,都是被禁止了的,如果要使用這幾個函數(shù),就要先修改php的配置文件php.ini,查找關鍵字disable_functions,將這一項中的這幾個函數(shù)名刪除掉,然后注意重啟apache。

  首先看一下system()和passthru()兩個功能類似,可以互換:

?php
  $shell = "ls -la";
  echo "pre>";
  system($shell, $status);
  echo "/pre>";
  //注意shell命令的執(zhí)行結果和執(zhí)行返回的狀態(tài)值的對應關系
  $shell = "font color='red'>$shell/font>";
  if( $status ){
    echo "shell命令{$shell}執(zhí)行失敗";
  } else {
    echo "shell命令{$shell}成功執(zhí)行";
  }
?>

  執(zhí)行結果如下:

  

  注意,system()會將shell命令執(zhí)行之后,立馬顯示結果,這一點會比較不方便,因為我們有時候不需要結果立馬輸出,甚至不需要輸出,于是可以用到exec()

    exec()的使用示例:

?php
  $shell = "ls -la";
  exec($shell, $result, $status);
  $shell = "font color='red'>$shell/font>";
  echo "pre>";
  if( $status ){
    echo "shell命令{$shell}執(zhí)行失敗";
  } else {
    echo "shell命令{$shell}成功執(zhí)行, 結果如下hr>";
    print_r( $result );
  }
  echo "/pre>";
?>

  運行結果如下:

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • python3編寫ThinkPHP命令執(zhí)行Getshell的方法
  • php命令行寫shell實例詳解
  • C++/Php/Python 語言執(zhí)行shell命令的方法(推薦)
  • php使用exec shell命令注入的方法講解
  • PHP 命令行工具 shell_exec, exec, passthru, system詳細使用介紹
  • 使用php shell命令合并圖片的代碼

標簽:迪慶 瀘州 雞西 黃石 郴州 貴陽 綿陽 白城

巨人網(wǎng)絡通訊聲明:本文標題《PHP執(zhí)行普通shell命令流程解析》,本文關鍵詞  PHP,執(zhí)行,普通,shell,命令,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《PHP執(zhí)行普通shell命令流程解析》相關的同類信息!
  • 本頁收集關于PHP執(zhí)行普通shell命令流程解析的相關信息資訊供網(wǎng)民參考!
  • 推薦文章