使用Centos 7中的php运行bash脚本

时间:2018-02-27 15:07:50

标签: php bash wget

我想从PHP中的网页执行shell脚本。

我的shell脚本(test.sh with chmod + x right):

#!/bin/bash
ls -la
wget www.google.fr

我的php页面(index.php):

<?php
echo system('./test.sh');
echo exec('./test.sh');
echo shell_exec('./test.sh');
?>

在这种情况下我可以运行脚本但是wget只返回ls命令工作。如果我直接在命令行(php index.php)中运行脚本一切正常。我做错了什么?

0 个答案:

没有答案