php 执行shell

<?php

    $shell "ls -la";
    exec($shell$result$status);
    $shell "<font color='red'>$shell</font>";
    echo "<pre>";
    if$status ){
        echo "shell命令{$shell}执行失败";
    else {
        echo "shell命令{$shell}成功执行, 结果如下<hr>";
        print_r( $result );
    }
    echo "</pre>";
?>
posted @ 2018-10-18 21:20  isafer_wilson  阅读(276)  评论(0编辑  收藏  举报