如何在exec命令中使用相对路径?

发布于 2024-08-08 15:07:38 字数 281 浏览 2 评论 0原文

如何使用相对路径使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

掩耳倾听 2024-08-15 15:07:38

可以使用 realpath 转相对在调用 exec() 之前将路径转换为绝对路径

$rel = 'something/program_name';
$abs = realpath($rel);
exec($abs);

You can use realpath to turn relative path into an absolute one before calling exec()

$rel = 'something/program_name';
$abs = realpath($rel);
exec($abs);
心如荒岛 2024-08-15 15:07:38

让它绝对化,相对路径是邪恶的。

exec(dirname(__FILE__) . 'program_name ......');

Make it absolute, relative paths are evil.

exec(dirname(__FILE__) . 'program_name ......');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文