如何使用 MAMP 从命令行运行 PHP 脚本?

发布于 2024-07-23 10:19:09 字数 482 浏览 7 评论 0原文

我已经安装了 MAMP。 现在我试图从命令行运行脚本,但我似乎无法让它工作。

我应该如何设置环境,以便可以从命令行运行脚本并使用通过 MAMP 安装的 PHP 版本?

更新:我同意下面的jjeaton,这是一个为 MAMP 的 PHP 创建别名的好解决方案

# add this to your ~/.bash_profile
alias phpmamp='/Applications/MAMP/bin/php/php5.3.6/bin/php'

现在您可以从命令行使用它:

$ phpmamp --help

I have MAMP installed. Now I am trying to run a script from the command line, but I can't seem to get it to work.

How should I set up my environment so that I can run a script from the command line and use the PHP version I installed with MAMP?

Update: I agree with jjeaton below, here is a nice solution of creating an alias to MAMP's PHP:

# add this to your ~/.bash_profile
alias phpmamp='/Applications/MAMP/bin/php/php5.3.6/bin/php'

Now you can use it from the command line:

$ phpmamp --help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

沒落の蓅哖 2024-07-30 10:19:09

请注意,在 MAMP 2.0.5 版本中,路径已更改。 现在是以下之一:

/Applications/MAMP/bin/php/php5.2.17/bin/
/Applications/MAMP/bin/php/php5.3.6/bin/

因此,添加 MAMP 的 php 命令的命令可能应如下所示:

export PATH=/Applications/MAMP/bin/php/php5.2.17/bin/:$PATH

或如下所示(取决于您要使用的 PHP 版本):

export PATH=/Applications/MAMP/bin/php/php5.3.6/bin/:$PATH

Please note that with version 2.0.5 of MAMP, the path has changed. It is now one of the following:

/Applications/MAMP/bin/php/php5.2.17/bin/
/Applications/MAMP/bin/php/php5.3.6/bin/

Therefore the command to add MAMP's php command should probably look like this:

export PATH=/Applications/MAMP/bin/php/php5.2.17/bin/:$PATH

or like this (depending on which version of PHP you want to use):

export PATH=/Applications/MAMP/bin/php/php5.3.6/bin/:$PATH
つ低調成傷 2024-07-30 10:19:09

另一种对于 PHP 版本可能更简洁的方法是在 bash 配置文件中创建一个别名,该别名指向您在运行 Composer 或其他 cli 工具等工具时要运行的特定 php 二进制文件。 这样做的好处是可以避免 OSX 中已安装的 php 版本出现一些潜在的库和 php.ini 配置兼容性问题。

例如,如果您想在 MAMP 中指向 php 5.4.1,请在您选择的编辑器(nano、vi 等)中编辑 .bash_profile 文件:

# nano ~/.bash_profile

将其添加到您的 PATH 语句下方:

alias php=/Applications/MAMP/bin/php/php5.4.10/bin/php

保存并退出(CTRL+X in纳米,:vi 中的 wq)。 退出终端。 下次尝试从 cli 调用 php 时,您将使用随 MAMP 安装的 5.4.10 版本。

如果您使用较新版本的 PHP 更新 MAMP,请记住更新此路径。

Another way that works that may be a little cleaner with regard to PHP versions is to create an alias in your bash profile that points to the specific php binary that you want to run when you run things like composer or other cli tools. This has the benefit of avoiding some potential library and php.ini config compatibility issues with the installed version of php in OSX.

For instance, if you want to point to php 5.4.1 in MAMP, edit your .bash_profile file in your editor of choice (nano, vi, etc.):

# nano ~/.bash_profile

Add this below your PATH statement:

alias php=/Applications/MAMP/bin/php/php5.4.10/bin/php

Save and quit (CTRL+X in nano, :wq in vi). Quit Terminal. The next time you try to call php from the cli, you'll be using the 5.4.10 version installed with MAMP.

Remember to update this path if you update MAMP with a more recent version of PHP.

晨光如昨 2024-07-30 10:19:09

在你的终端中运行这个:

export PATH=/Applications/MAMP/bin/php5/bin/:$PATH

应该可以解决问题。 正如 Tom Haigh 提到的,它会将 MAMP PHP 可执行文件添加到路径中,以便您可以使用“php”而不是完整路径。

Run this in your Terminal:

export PATH=/Applications/MAMP/bin/php5/bin/:$PATH

Should do the trick. It will - as Tom Haigh mentioned - add the MAMP PHP executable to the path so you can use "php" instead of the full path.

墨落成白 2024-07-30 10:19:09

是的,我认为它在这里: /Applications/MAMP/bin/php5/bin/php

您可以将 /Applications/MAMP/bin/php5/bin/ 添加到路径的前面或在 /usr/bin 中创建一个符号链接(默认 PHP 安装可能已经有一个符号链接)

Yes, I think it is here: /Applications/MAMP/bin/php5/bin/php

You can either add /Applications/MAMP/bin/php5/bin/ to the front of your path or create a symlink in /usr/bin (there probably is one there already for the default PHP installation)

独自←快乐 2024-07-30 10:19:09

只需替换此命令中的 PHP 版本即可:

/Applications/MAMP/bin/php/php7.4.21/bin/php  index.php

Just replace the PHP version in this command:

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