对你帮助最大的书籍,是使你想得最多的书籍。——伯克
首先是用homebrew
安装phpenv
然后安装php
,大概过程如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 GithubIireAchao:bison-2.7 achao$ cat ~/.bash_profile export NVM_DIR="$HOME /.nvm" [ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh" [ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" export NVM_NODEJS_ORG_MIRROR=http://mirrors.cloud.tencent.com/nodejs-release/export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git" export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-core.git" export HOMEBREW_API_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles/api" export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles/bottles" export PYTHON_BUILD_MIRROR_URL="https://mirrors.huaweicloud.com/python/" export JAVA_HOME="/Users/achao/Library/Java/JavaVirtualMachines/azul-1.8.0_372/Contents/Home" export PATH="$JAVA_HOME :$PATH " export PYENV_ROOT="$HOME /.pyenv" command -v pyenv >/dev/null || export PATH="$PYENV_ROOT /bin:$PATH " eval "$(pyenv init -) " export PATH="/Users/achao/.yarn/bin:$PATH " export PATH="$PATH :/Users/achao/Library/Application Support/JetBrains/Toolbox/scripts" export SDKMAN_DIR="$HOME /.sdkman" [[ -s "$HOME /.sdkman/bin/sdkman-init.sh" ]] && source "$HOME /.sdkman/bin/sdkman-init.sh" export PHPENV_ROOT="$HOME /.phpenv" export PATH="$PHPENV_ROOT /bin:$PATH " eval "$(phpenv init -) " BZIP2_PATH=$(brew --prefix bzip2) OPENSSL_PATH=$(brew --prefix openssl) READLINE_PATH=$(brew --prefix readline) LIBXML2_PATH=$(brew --prefix libxml2) LIBZIP_PATH=$(brew --prefix libzip) LIBICONV_PATH=$(brew --prefix libiconv) ONIGURUMA_PATH=$(brew --prefix oniguruma) TIDY_PATH=$(brew --prefix tidy-html5) export PKG_CONFIG_PATH="$TIDY_PATH /lib/pkgconfig:$ONIGURUMA_PATH /lib/pkgconfig:$PKG_CONFIG_PATH " export CONFIGURE_OPTS="\ --with-bz2=$BZIP2_PATH \ --with-openssl=$OPENSSL_PATH \ --with-readline=$READLINE_PATH \ --with-libxml=$LIBXML2_PATH \ --with-libzip=$LIBZIP_PATH \ --with-iconv=$LIBICONV_PATH \ --with-tidy=$TIDY_PATH " export CC=clangexport CXX=clang++export CXXFLAGS="-std=c++17" export CFLAGS="-I$(brew --prefix) /include" export LDFLAGS="-L$(brew --prefix) /lib" GithubIireAchao:bison-2.7 achao$ source ~/.bash_profile GithubIireAchao:bison-2.7 achao$ phpenv install 8.3.5 [Info]: Loaded extension plugin [Info]: Loaded apc Plugin. [Info]: Loaded composer Plugin. [Info]: Loaded github Plugin. [Info]: Loaded uprofiler Plugin. [Info]: Loaded xdebug Plugin. [Info]: Loaded xhprof Plugin. [Info]: Loaded zendopcache Plugin. [Info]: php.ini-production gets used as php.ini [Info]: Building 8.3.5 into /Users/achao/.phpenv/versions/8.3.5 [Downloading]: https://www.php.net/distributions/php-8.3.5.tar.bz2 [Preparing]: /var/tmp/php-build/source/8.3.5 [Compiling]: /var/tmp/php-build/source/8.3.5 [xdebug]: Installing version 3.3.1 [Skipping]: Already downloaded http://xdebug.org/files/xdebug-3.3.1.tgz [xdebug]: Compiling xdebug in /var/tmp/php-build/source/xdebug-3.3.1 [xdebug]: Installing xdebug configuration in /Users/achao/.phpenv/versions/8.3.5/etc/conf.d/xdebug.ini [xdebug]: Cleaning up. Makefile:245: warning: overriding commands for target `test ' Makefile:136: warning: ignoring old commands for target `test' [Info]: Enabling Opcache... [Info]: Done [Info]: The Log File is not empty, but the Build did not fail. Maybe just warnings got logged. You can review the log in /tmp/php-build.8.3.5.20240520165457.log or rebuild with '--verbose' option [Success]: Built 8.3.5 successfully. 8.3 => 8.3.7 GithubIireAchao:bison-2.7 achao$ phpenv local 8.3.7 8.3.7 GithubIireAchao:bison-2.7 achao$ php -v PHP 8.3.7 (cli) (built: May 20 2024 16:36:08) (NTS) Copyright (c) The PHP Group Zend Engine v4.3.7, Copyright (c) Zend Technologies with Zend OPcache v8.3.7, Copyright (c), by Zend Technologies with Xdebug v3.3.1, Copyright (c) 2002-2023, by Derick Rethans GithubIireAchao:bison-2.7 achao$ phpenv local 8.3.5 8.3.5 GithubIireAchao:bison-2.7 achao$ php -v PHP 8.3.5 (cli) (built: May 20 2024 16:56:06) (NTS) Copyright (c) The PHP Group Zend Engine v4.3.5, Copyright (c) Zend Technologies with Zend OPcache v8.3.5, Copyright (c), by Zend Technologies with Xdebug v3.3.1, Copyright (c) 2002-2023, by Derick Rethans GithubIireAchao:bison-2.7 achao$
可以看到很方便地管理php
版本