• ubuntu18.04 安装 php7.2


    sudo apt-get install software-properties-common python-software-properties 
    
    sudo add-apt-repository ppa:ondrej/php && sudo apt-get update
    
    sudo apt-get -y install php7.2
    
     # 如果之前有其他版本PHP,在这边禁用掉
    sudo a2dismod php5
    sudo a2enmod php7.2
    
    # 安装常用扩展
    sudo -y apt-get install php7.2-fpm php7.2-mysql php7.2-curl php7.2-json php7.2-mbstring php7.2-xml  php7.2-intl 
    
    #  安装其他扩展(按需安装)
    sudo apt-get install php7.2-gd
    sudo apt-get install php7.2-soap
    sudo apt-get install php7.2-gmp    
    sudo apt-get install php7.2-odbc       
    sudo apt-get install php7.2-pspell     
    sudo apt-get install php7.2-bcmath   
    sudo apt-get install php7.2-enchant    
    sudo apt-get install php7.2-imap       
    sudo apt-get install php7.2-ldap       
    sudo apt-get install php7.2-opcache
    sudo apt-get install php7.2-readline   
    sudo apt-get install php7.2-sqlite3    
    sudo apt-get install php7.2-xmlrpc
    sudo apt-get install php7.2-bz2
    sudo apt-get install php7.2-interbase
    sudo apt-get install php7.2-pgsql      
    sudo apt-get install php7.2-recode     
    sudo apt-get install php7.2-sybase     
    sudo apt-get install php7.2-xsl
    sudo apt-get install php7.2-cgi        
    sudo apt-get install php7.2-dba 
    sudo apt-get install php7.2-phpdbg     
    sudo apt-get install php7.2-snmp       
    sudo apt-get install php7.2-tidy       
    sudo apt-get install php7.2-zip
    

      

    其他

    • nginx 配置
    fastcgi_pass unix:ar/run/php/php7.2-fpm.sock;
    

      

  • 相关阅读:
    20180604_Myeclipse下配置SVN报错问题 svn
    20180603_升级Win10后,远程连接桌面连接,出现身份验证错误!
    20180603_navicat 连接sqlserver提示要安装 sql server native client
    VB.net程序实现分页
    多线程Demo
    多线程Demo VB.net
    SQLServer数据库子结构
    SQLServer数据库常用命令
    传播路径图调查2013年初
    拾遗
  • 原文地址:https://www.cnblogs.com/chancy/p/9443930.html
Copyright © 2020-2023  润新知