From the command line, I can get the home directory like this:
~/
How can I get the home directory inside my PHP CLI script?
#!/usr/bin/php
<?php
echo realpath(~/);
?>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
$_SERVER['HOME']Edit:
To make it complete, see what
print_r($_SERVER)gave me, executed from the command line:I hope I don’t expose relevant security information 😉
Windows Compatibility
Note that
$_SERVER['HOME']is not available on Windows. Instead, the variable is split into$_SERVER['HOMEDRIVE']and$_SERVER['HOMEPATH'], meaning if you want both Unix-and-Windows compatibility, do: