從 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中文網其他相關文章!