php shell_exec()与反撇号等价输出结果

<?php   
    #使用反撇号,暗示作为命令来执行
    $result=`date`;
    echo "<p>the server timestamp is: $result</p>";

    echo "<hr color=red>";
    #使用shell_exec()
    $result1=shell_exec("date");
    echo "<p>the server timestamp is: $result1</p>";
?>

输出结果如下:

the server timestamp is: 当前日期: 2009/06/30 二 输入新日期: (年月日)


the server timestamp is: 当前日期: 2009/06/30 二 输入新日期: (年月日)



你可能感兴趣的:(PHP)