使用ubuntu用php解决shell_exec问题

问题描述 投票:0回答:1

我有shell_exec的问题。我需要从sh文件中运行php文件

在ubuntu中:

<?php
echo shell_exec ('sh ./myScript.sh');
?>

但它没有用。


我在Windows中尝试了以下操作,它有效:

<?php
exec('c:\WINDOWS\system32\cmd.exe /c START myScript.bat');
?>
php ubuntu sh shell-exec
1个回答
0
投票

您需要像这样运行命令:

shell_exec ('sh /var/www/html/myScript.sh'); 
© www.soinside.com 2019 - 2024. All rights reserved.