Home > Article > Backend Development > How to Override the PHP Alias for Streamlined MAMP Usage on macOS?
Overriding PHP Alias for MAMP Usage on macOS
After encountering configuration issues that hindered your ability to utilize the SOAP module, you seek a solution to streamline the command-line use of the MAMP version of PHP. Currently, you must specify the lengthy path to invoke PHP. How can you establish a convenient alias to simplify this process?
Answer:
In your home directory, navigate to the ".bash_profile" file and edit it with your preferred text editor. This file allows you to declare environment variables and augment your system path.
Add the following lines to the ".bash_profile" file:
export MAMP_PHP=/Applications/MAMP/bin/php/php5.3.6/bin export PATH="$MAMP_PHP:$PATH"
By defining the MAMP_PHP variable and incorporating it at the beginning of the $PATH variable, you ensure that the MAMP version of PHP takes precedence over the system version located in /usr/bin.
Upon saving this file, relaunch your Terminal window. Your commands will now leverage the MAMP version of PHP. To verify this, execute php -v or which php to display the version or path of the active PHP executable.
The above is the detailed content of How to Override the PHP Alias for Streamlined MAMP Usage on macOS?. For more information, please follow other related articles on the PHP Chinese website!