亚洲最大看欧美片,亚洲图揄拍自拍另类图片,欧美精品v国产精品v呦,日本在线精品视频免费

  • 站長資訊網
    最全最豐富的資訊網站

    一起看看PHP執(zhí)行普通shell命令流程

    一起看看PHP執(zhí)行普通shell命令流程

    【相關學習推薦:php圖文教程】

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

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

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

      注意的是:這三個函數在默認的情況下,都是被禁止了的,如果要使用這幾個函數,就要先修改php的配置文件php.ini,查找關鍵字disable_functions,將這一項中的這幾個函數名刪除掉,然后注意重啟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í)行結果如下:

    一起看看PHP執(zhí)行普通shell命令流程  

      注意,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>"; ?>

      運行結果如下:

    一起看看PHP執(zhí)行普通shell命令流程

    相關學習推薦:php編程(視頻)

    贊(0)
    分享到: 更多 (0)
    網站地圖   滬ICP備18035694號-2    滬公網安備31011702889846號