5

How do I change the PHP version my shell uses?

 3 years ago
source link: https://help.dreamhost.com/hc/en-us/articles/214202148-How-do-I-change-the-PHP-version-my-shell-uses-
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

How do I change the PHP version my shell uses?

Overview

When you run the php command on the server, it uses the system version (which changes over time). You can specify a version of PHP for your shell to use. This way, all PHP commands will use that specific version.

Which shell user's file to update?

The examples in this article use the bash shell. There are also other shells you can use at DreamHost. The profile file you update is different depending on the shell type you're using. For example, the current supported default shells are Bash, Korn, Tcsh, and Zsh. Below are the profile files for each shell type:

  • .bash_profile
  • .kshrc
  • .tcshrc
  • .zshrc

If you’re using tcsh, you must modify the command as shown below before they can be added to the .tcshrc profile:

alias php /usr/local/php74/bin/php
set path=(/usr/local/php74/bin $path)

You can also modify this accordingly using the path to any of the PHP-CLI binaries.

Changing your shell user's PHP version

To change the default version of PHP under your Shell user:

  1. Log into your user via SSH.
  2. Make sure you’re in your user's directory by running the following:
    [server]$ cd ~
  3. View the creating and editing a file via SSH article for instructions on how to edit your existing .bash_profile. Add the following line to force PHP 7.4.
    export PATH=/usr/local/php74/bin:$PATH 
    
  4. Save and close the file and return to your shell.
  5. Update that file by running the following command:
    [server]$ . ~/.bash_profile
  6. If you now run php -v you’ll see the new version being used.
    [server]$ php -v

Using an alias to change the PHP version

You can also use an alias instead. Add the following to your .bash_profile file.

alias php='/usr/local/php74/bin/php'

This works the same as export PATH when added to your .bash_profile.

See also

Did this article answer your questions?


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK