如何在exec命令中使用相对路径?
如何使用相对路径使用 exec
命令从 PHP 运行外部程序?
<?php
exec('program_name ......');
?>
仅当 program_name.exe
与 PHP 脚本位于同一目录中时,此功能才有效。例如,如果 php 脚本不在“something”目录中,则 exec('something/program_name ......');
不起作用。
How to run external program from PHP with exec
command using relative paths?
<?php
exec('program_name ......');
?>
This works only if program_name.exe
is in the same directory as the PHP script. For example exec('something/program_name ......');
doesn't work if php script is not in the 'something' directory.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以使用
realpath
转相对在调用 exec() 之前将路径转换为绝对路径You can use
realpath
to turn relative path into an absolute one before callingexec()
让它绝对化,相对路径是邪恶的。
Make it absolute, relative paths are evil.