Table of Contents
Method 1. Use valet use php@version (Friends who use valet to set up the environment, please read here)
Method 2: Install php-version (if valet is not used, this should be Yes)
step 1. Use brew to install multiple php versions
step 2. If you find that the brew command to install php-version is invalid, then install it manually
trap record
1. The first time you use brew to install php72, the permissions are not enough to create the Frameworks directory
2. Use brew to install the php-version tool, the command is invalid
3. Executephp -vTimes dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.61.dylib
4. php-version does not work in valet environment
Home Backend Development PHP Tutorial Understand how to use PHP-version to switch PHP versions under macOS

Understand how to use PHP-version to switch PHP versions under macOS

Jun 30, 2020 pm 05:58 PM
macos php

Understand how to use PHP-version to switch PHP versions under macOS

The local environment is 7.1 which is consistent with the company's project environment, but laravel6.0 upgrade must require 7.2 (the local environment of friends in the group is 7.2, and then push After the code, the project dev environment cannot be automatically deployed). After thinking about it, I still have to get something locally to facilitate switching the PHP version.

Method 1. Use valet use php@version (Friends who use valet to set up the environment, please read here)

This is actually because I did not read the document carefully - -, I have only roughly learned the basic use of valet before - -, if you read the documentation carefully, you can save half a day - -

Valet allows you to use valet use php@version Command to switch PHP version. If the specified version has not been installed, Valet will install the specified PHP version through Brew:

valet use php@7.2
valet use php@7.1
Copy after login

But this must be a new version of valet and must be upgraded first, otherwise an error will be reported, as follows

[qian@bogon ~ ]$ valet use php@7.2
  Command "use" is not defined.
Copy after login

Valet upgrade:
You can use the composer global update command in the terminal to update Valet. After the upgrade, if necessary, it is best (in practice, it is found that it is necessary) to run valet install again so that Valet can upgrade the configuration file.

composer global update
valet install
Copy after login

After blue, it will be ok valet use php@7.2

[qian@bogon ~ ]$ valet use php@7.2
Stopping php@7.1...
Unlinking current version: php@7.1
Linking new version: php@7.2
Updating PHP configuration...
Restarting php@7.2...
Restarting nginx...
Valet is now using php@7.2.
Copy after login

Method 2: Install php-version (if valet is not used, this should be Yes)

step 1. Use brew to install multiple php versions

brew install php71 // It is not necessary if you have it originally
brew install php72

step 2. If you find that the brew command to install php-version is invalid, then install it manually

[qian@bogon ~ ]$ mkdir $HOME/.local
[qian@bogon ~ ]$ cd $HOME/.local
[qian@bogon .local ]$ git clone https://github.com/wilmoore/php-version.git
[qian@bogon .local ]$ source $HOME/.local/php-version/php-version.sh
//测试  查看当前php版本
[qian@bogon .local ]$ php-version
* 7.1.18
 7.2.22
Copy after login

Now add environment variables

[qian@bogon ~ ]$ echo "source $HOME/.local/php-version/php-version.sh" >> ~/.zshrc
[qian@bogon ~ ]$ source ~/.zshrc
Copy after login

Switch php version

php-version 7.1
或
php-version 7.2
Copy after login

Use the command line to type php -v which is already the switched version.


trap record

1. The first time you use brew to install php72, the permissions are not enough to create the Frameworks directory

An error is reported when executing the first time

==> Pouring python-3.7.4_1.mojave.bottle.tar.gz
Error: An unexpected error occurred during the `brew link` step
The formula built, but is not symlinked into /usr/local
Permission denied @ dir_s_mkdir - /usr/local/Frameworks
Error: Permission denied @ dir_s_mkdir - /usr/local/Frameworks
Copy after login

Then go to /usr/local/ and create a new directory Frameworks, and execute it againbrew install php72

2. Use brew to install the php-version tool, the command is invalid

brew install php-version
gave an error

[qian@bogon ~ ]$ brew install php-version
Updating Homebrew...
==> Auto-updated Homebrew!
Updated 1 tap (homebrew/core).
==> Updated Formulae
atomist-cli                              webtorrent-cli

Error: No available formula with the name "php-version"
==> Searching for a previously deleted formula (in the last month)...
Warning: homebrew/core is shallow clone. To get complete history run:
  git -C "$(brew --repo homebrew/core)" fetch --unshallow

Error: No previously deleted formula found.
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching taps...
==> Searching taps on GitHub...
Error: No formulae found in taps.
Copy after login

It said there is no such thing called "php-version", I also put "homebrew/core" Pulled it

git -C "$(brew --repo homebrew/core)" fetch --unshallow
Copy after login

3. Executephp -vTimes dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.61.dylib

[qian@bogon ~ ]$ php -v
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.61.dylib
  Referenced from: /usr/local/bin/php
  Reason: image not found
[1]    66728 abort      php -v
Copy after login

Anyway, I just reinstall Dafa

brew uninstall --force php71 && brew install php71
Copy after login

4. php-version does not work in valet environment


If you don’t have friends who use valet, you don’t need to read the following. Okay~

Same as method one above, php-version is installed, php -v also faces
but. . . . Regardless of whether you use sudo pkill -INT -o php-fpm or sudo kill -9 process id,
, you cannot kill the php-fpm process. Use ps -ef | grep php Check the process:

[qian@bogon ~ ]$ ps -ef |grep php
  501   307     1   0 四09上午 ??        51:34.33 /Applications/PhpStorm.app/Contents/MacOS/phpstorm -psn_0_90134
    0 70900     1   0  2:33下午 ??         0:00.11 /usr/local/opt/php@7.1/sbin/php-fpm --nodaemonize
  501 70901 70900   0  2:33下午 ??         0:00.00 /usr/local/opt/php@7.1/sbin/php-fpm --nodaemonize
  501 70902 70900   0  2:33下午 ??         0:00.00 /usr/local/opt/php@7.1/sbin/php-fpm --nodaemonize
  501 70904 10409   0  2:33下午 ttys007    0:00.00 grep --color=auto --exclude-dir=.bzr --exclude-dir=CVS --exclude-dir=.git --exclude-dir=.hg --exclude-dir=.svn php
Copy after login

Print phpinfo() in the code; it is still the php version before switching, you have to find the reason and find another way
Usesudo php-fpmCommand, found that the error reported is related to valet

[qian@bogon ~ ]$ sudo php-fpm && php -v
Password:
[16-Sep-2019 18:27:08] ERROR: An another FPM instance seems to already listen on /Users/qian/.config/valet/valet.sock
[16-Sep-2019 18:27:08] ERROR: FPM initialization failed
[qian@bogon ~ ]$
Copy after login

Related learning recommendations:PHP programming from entry to proficiency

The above is the detailed content of Understand how to use PHP-version to switch PHP versions under macOS. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP: Handling Databases and Server-Side Logic PHP: Handling Databases and Server-Side Logic Apr 15, 2025 am 12:15 AM

PHP uses MySQLi and PDO extensions to interact in database operations and server-side logic processing, and processes server-side logic through functions such as session management. 1) Use MySQLi or PDO to connect to the database and execute SQL queries. 2) Handle HTTP requests and user status through session management and other functions. 3) Use transactions to ensure the atomicity of database operations. 4) Prevent SQL injection, use exception handling and closing connections for debugging. 5) Optimize performance through indexing and cache, write highly readable code and perform error handling.

PHP's Purpose: Building Dynamic Websites PHP's Purpose: Building Dynamic Websites Apr 15, 2025 am 12:18 AM

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

PHP: An Introduction to the Server-Side Scripting Language PHP: An Introduction to the Server-Side Scripting Language Apr 16, 2025 am 12:18 AM

PHP is a server-side scripting language used for dynamic web development and server-side applications. 1.PHP is an interpreted language that does not require compilation and is suitable for rapid development. 2. PHP code is embedded in HTML, making it easy to develop web pages. 3. PHP processes server-side logic, generates HTML output, and supports user interaction and data processing. 4. PHP can interact with the database, process form submission, and execute server-side tasks.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP and Python: Code Examples and Comparison PHP and Python: Code Examples and Comparison Apr 15, 2025 am 12:07 AM

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP: Creating Interactive Web Content with Ease PHP: Creating Interactive Web Content with Ease Apr 14, 2025 am 12:15 AM

PHP makes it easy to create interactive web content. 1) Dynamically generate content by embedding HTML and display it in real time based on user input or database data. 2) Process form submission and generate dynamic output to ensure that htmlspecialchars is used to prevent XSS. 3) Use MySQL to create a user registration system, and use password_hash and preprocessing statements to enhance security. Mastering these techniques will improve the efficiency of web development.

Why Use PHP? Advantages and Benefits Explained Why Use PHP? Advantages and Benefits Explained Apr 16, 2025 am 12:16 AM

The core benefits of PHP include ease of learning, strong web development support, rich libraries and frameworks, high performance and scalability, cross-platform compatibility, and cost-effectiveness. 1) Easy to learn and use, suitable for beginners; 2) Good integration with web servers and supports multiple databases; 3) Have powerful frameworks such as Laravel; 4) High performance can be achieved through optimization; 5) Support multiple operating systems; 6) Open source to reduce development costs.

PHP vs. Python: Use Cases and Applications PHP vs. Python: Use Cases and Applications Apr 17, 2025 am 12:23 AM

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.

See all articles