PHP exec() command: how to specify working directory?

Viewed 80274

My script, let's call it execute.php, needs to start a shell script which is in Scripts subfolder. Script has to be executed so, that its working directory is Scripts. How to accomplish this simple task in PHP?

Directory structure looks like this:

execute.php
Scripts/
    script.sh
5 Answers
Related