[Linux] PHP程式員玩轉Linux系列-升級PHP到PHP7

來源:互聯網
上載者:User

標籤:升級   yum   初學者   技術分享   extension   project   htm   檔案   編譯安裝   

1.PHP程式員玩轉Linux系列-怎麼安裝使用CentOS

2.PHP程式員玩轉Linux系列-lnmp環境的搭建

3.PHP程式員玩轉Linux系列-搭建FTP代碼開發環境

4.PHP程式員玩轉Linux系列-備份還原MySQL

5.PHP程式員玩轉Linux系列-自動備份與SVN

6.PHP程式員玩轉Linux系列-Linux和Windows安裝nginx

7.PHP程式員玩轉Linux系列-nginx初學者引導

8.PHP程式員玩轉Linux系列-Nginx中的HTTPS

9.PHP程式員玩轉Linux系列-使用supervisor實現守護進程

 

在系列的第二篇,CentOS系統下lnmp環境搭建中,我安裝好的PHP版本是5.3,現在我要用最簡單的方式升級PHP版本到最新版.

訪問這個網站https://webtatic.com/,該網站提供PHP最新版本的yum倉庫,直接拿來就能用,非常的方便. 

添加倉庫

rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpmrpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm

安裝PHP7

yum install php71w* 

nginx,mysql,php的版本情況

 

安裝PHP的memcached擴充,該擴充是memcache擴充的改進版

pecl install msgpackpecl install memcached

該擴充必須的依賴是:libmemcached 1.x 或更高;igbinary擴充 2.0或更高;msgpack 2.0或更高

如果要安裝libmemcached這個用戶端庫,需要編譯安裝,如果有需要再寫寫過程.  

新加個設定檔/etc/php.d/memcached.ini,裡面就一句話

extension=memcached.so

  

 

nginx與php-fpm的測試

 

mysql的連結測試

$dbh = new PDO("mysql:host=localhost;dbname=blog","root","xxxx");$sth = $dbh->prepare("select * from article");$sth->execute();$result = $sth->fetchAll(PDO::FETCH_COLUMN);var_dump($result);

 

memcache的連結測試

$m = new Memcached();$m->addServer(‘localhost‘, 11211);$m->set(‘name‘, "taoshihan");var_dump($m->get(‘name‘));                             

 

  

[Linux] PHP程式員玩轉Linux系列-升級PHP到PHP7

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.