如何通过php页面执行shell脚本

2025-01-02 10:55:08
推荐回答(1个)
回答1:

通过执行运行符(``)执行命令
$output = `ls -al`; //注意不用加双引号

echo $output;
?>