PHP CLI - 类似于 $PATH

发布于 2024-12-02 07:25:30 字数 244 浏览 1 评论 0原文

我想问你是否有类似 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 技术交流群。

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

发布评论

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

评论(3

萝莉病 2024-12-09 07:25:30

如果你这样做,

php a2addvhost.php example.com

你仍然在 Unix 中。因此,a2addvhost.php 文件必须位于当前目录中才能正常工作。

If you're doing

php a2addvhost.php example.com

You're still in Unix. So the a2addvhost.php file must be in the current directory for it to work.

半葬歌 2024-12-09 07:25:30

第一个参数必须是确切的路径名。但是,您可以创建一个启动脚本(以 root 身份):

$ echo -e '#!/bin/sh\nexec php /usr/share/php/a2addvhost.php "$@"\n' \
   > /usr/bin/a2addvhost
$ # And then start with ...
$ a2addvhost example.com

或者,通过按如下方式添加 a2addvhost.php

#!/usr/bin/env php
<?php
/* php code goes here */

使其可执行:

$ chmod a+x /usr/share/php/a2addvhost.php

现在,如果 PATH 包含 /usr/share /php/,您可以使用以下命令启动脚本

$ /usr/share/php/a2addvhost.php example.com

The first argument must be the exact pathname. However, you can make a start script (as root):

$ echo -e '#!/bin/sh\nexec php /usr/share/php/a2addvhost.php "$@"\n' \
   > /usr/bin/a2addvhost
$ # And then start with ...
$ a2addvhost example.com

Alternatively, make a2addvhost.php executable by prepending it as follows:

#!/usr/bin/env php
<?php
/* php code goes here */

and making it executable:

$ chmod a+x /usr/share/php/a2addvhost.php

Now, if PATH contains /usr/share/php/, you can start your script with

$ /usr/share/php/a2addvhost.php example.com
旧人 2024-12-09 07:25:30

/usr/share/php/ 添加到您的 PATH,为其提供可执行标志,然后只需运行

a2addvhost.php example.com

您可能需要在文件开头添加 shebang。

Add /usr/share/php/ to your PATH, give it the executable flag, then simply run

a2addvhost.php example.com

you may need to add the shebang at the beginning of the file.

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