从 PHP 执行 Bash 命令
尝试使用 shell_exec、exec 和 system 等命令从 PHP 运行 bash 脚本有时可能会失败。造成这种情况的一个可能原因是当前工作目录存在问题。
要解决此问题,您可以在使用 chdir 函数执行脚本之前显式更改工作目录。下面是一个示例:
<code class="php">$old_path = getcwd(); // Store the current working directory chdir('/my/path/'); // Change to the correct directory $output = shell_exec('./script.sh var1 var2'); // Execute the script chdir($old_path); // Revert to the previous working directory</code>
通过指定正确的目录,可以确保 bash 脚本在预期环境中执行。这应该可以解决您在从 PHP 文件执行脚本时遇到的问题。
以上是为什么我无法从 PHP 执行 Bash 脚本?的详细内容。更多信息请关注PHP中文网其他相关文章!