PHP CLI - 类似于 $PATH
我想问你是否有类似 UNIX $PATH for PHP CLI 的东西。
例如,我想使用
php a2addvhost.php example.com
而不是
php /usr/share/php/a2addvhost.php example.com
我尝试更改 include_path 和 $PATH 但两者都有效。
I want to ask you if there is something like UNIX $PATH for PHP CLI.
Eg., I want to use
php a2addvhost.php example.com
instead of
php /usr/share/php/a2addvhost.php example.com
I tried to change include_path and $PATH but either work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你这样做,
你仍然在 Unix 中。因此,
a2addvhost.php
文件必须位于当前目录中才能正常工作。If you're doing
You're still in Unix. So the
a2addvhost.php
file must be in the current directory for it to work.第一个参数必须是确切的路径名。但是,您可以创建一个启动脚本(以 root 身份):
或者,通过按如下方式添加
a2addvhost.php
使其可执行:
现在,如果 PATH 包含
/usr/share /php/
,您可以使用以下命令启动脚本The first argument must be the exact pathname. However, you can make a start script (as root):
Alternatively, make
a2addvhost.php
executable by prepending it as follows:and making it executable:
Now, if PATH contains
/usr/share/php/
, you can start your script with将
/usr/share/php/
添加到您的 PATH,为其提供可执行标志,然后只需运行您可能需要在文件开头添加 shebang。
Add
/usr/share/php/
to your PATH, give it the executable flag, then simply runyou may need to add the shebang at the beginning of the file.