久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      聊聊brew link更換php版本失敗問(wèn)題

      本文給大家聊聊brew link更換php版本失敗問(wèn)題,希望對(duì)需要的朋友有所幫助!

      問(wèn)題描述:

      我透過(guò) brew 安裝三種php版本

      php 5.6 php 7.4 php 8.0

      $ php -v

      PHP 8.0.3 (cli) (built: Mar  4 2021 20:45:17) ( NTS ) Copyright (c) The PHP Group Zend Engine v4.0.3, Copyright (c) Zend Technologies     with Zend OPcache v8.0.3, Copyright (c), by Zend Technologies

      停用8.0使用7.4

      $ brew unlink php@8.0 && brew link php@7.4 Unlinking /usr/local/Cellar/php/8.0.3... 0 symlinks removed. Linking /usr/local/Cellar/php@7.4/7.4.16... 264 symlinks created. $ php -v

      還是一樣版本

      我開新的終端機(jī)也是一樣8.0.3

      PHP 8.0.3 (cli) (built: Mar  4 2021 20:45:17) ( NTS ) Copyright (c) The PHP Group Zend Engine v4.0.3, Copyright (c) Zend Technologies     with Zend OPcache v8.0.3, Copyright (c), by Zend Technologies

      中規(guī)中矩操作了

      這是哪裏有少設(shè)置了?

      分析解決:

      你可以嘗試安裝一個(gè)PHP選擇器

      brew update brew upgrade

      參考文檔

      https://github.com/shivammathur/homebrew-php

      安裝指定php brew install shivammathur/php/php@7.3

      鏈接php版本 brew link –overwrite –force php@7.3

      如果出現(xiàn)報(bào)錯(cuò)

      Warning: Already linked: <Cellar Path> To relink:   brew unlink <formula> && brew link <formula>

      執(zhí)行

      brew unlink php@7.3 brew link --overwrite --force php@7.3

      重啟服務(wù)

      apache brew services restart httpd nginx brew services restart nginx

      安裝結(jié)果

      To enable PHP in Apache add the following to httpd.conf and restart Apache:     LoadModule php7_module /usr/local/opt/php@7.0/lib/httpd/modules/libphp7.so     <FilesMatch .php$>         SetHandler application/x-httpd-php     </FilesMatch> Finally, check DirectoryIndex includes index.php     DirectoryIndex index.php index.html The php.ini and php-fpm.ini file can be found in:     /usr/local/etc/php/7.0/ php@7.0 is keg-only, which means it was not symlinked into /usr/local, because this is an alternate version of another formula. If you need to have php@7.0 first in your PATH run:   echo 'export PATH="/usr/local/opt/php@7.0/bin:$PATH"' >> ~/.zshrc   echo 'export PATH="/usr/local/opt/php@7.0/sbin:$PATH"' >> ~/.zshrc For compilers to find php@7.0 you may need to set:   export LDFLAGS="-L/usr/local/opt/php@7.0/lib"   export CPPFLAGS="-I/usr/local/opt/php@7.0/include" To have launchd start shivammathur/php/php@7.0 now and restart at login:   brew services start shivammathur/php/php@7.0 Or, if you don't want/need a background service you can just run:   php-fpm

      歡迎討論!

      推薦學(xué)習(xí):《PHP視頻教程》

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)