vote up 1 vote down star

When calling php via cli, the current directory is NOT changed to the one of the script. All the scripts i have running in crontab run via the CLI, so this is an issue.

I'm currently fixing the problem by doing a chdir() with the absolute path where the script is, but i REALLY dont like hardcoding paths into stuff like that.

I'm looking for the most portable/reliable method for ensuring that the current working directory is the one where the script it is at.

flag

2 Answers

vote up 8 vote down check
chdir(dirname(__FILE__));
link|flag
vote up 2 vote down

You can use __FILE__ to get the full absolute path to the executing file itself:

<?php
echo "I'm here: ".__FILE__."\n";
?>

See the documentation for more info.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.