Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
执行此操作时如何知道您现在在哪个目录中:
exec("php somescript.php");- 如何知道我现在在哪里,知道我需要去哪里执行我的脚本?
exec("php somescript.php");
您可以使用pwd命令或 PHP 的内置函数getcwd()来获取工作目录。推荐后者。
pwd
getcwd()
但是,如果您知道 PHP 脚本的绝对路径,您应该只指定它而不关心您当前所在的目录。
exec("php /path/to/somescript.php");
string getcwd ( void ):
string getcwd ( void )
成功返回当前工作目录,失败返回 FALSE。