您好,登錄后才能下訂單哦!
本次編譯PHP7擴(kuò)展,以 memcached 為例
1.進(jìn)入 http://pecl.php.net PHP的擴(kuò)展庫(kù)
2.搜索 memcached 復(fù)制 stable版 源碼鏈接
3.下載到服務(wù)器并解壓
4.使用 phpize 創(chuàng)建 configure 文件
5.生成 Makefile 并 編譯安裝
6.把生成的 .so 擴(kuò)展,在 php.ini 里引入
7.重啟 PHP 或 重啟 Apache
wget https://pecl.php.net/get/memcached-3.0.3.tgz tar xzf memcached-3.0.3.tgz cd memcached-3.0.3 /path/php/bin/phpize #path 為 PHP路徑 ./configure --with-php-config=/path/php/bin/php-config
提示缺少 libmemcached
wget https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz tar xzf libmemcached-1.0.18 cd libmemcached-1.0.18 ./configure --prefix=/usr/local/libmemcached make && make install cd memcached-3.0.3 ./configure --with-php-config=/usr/local/php7/bin/php-config --with-libmemcached-dir=/usr/local/libmemcached
繼續(xù)報(bào)錯(cuò)
./configure --with-php-config=/usr/local/php7/bin/php-config --with-libmemcached-dir=/usr/local/libmemcached --disable-memcached-sasl make && make install vim php.ini 加入: extension=memcached.so #或填絕對(duì)路徑
重啟PHP
pkill -9 php /usr/local/php7/sbin/php-fpm
查看 phpinfo 頁(yè)面,就可以看到 memcached 擴(kuò)展成功安裝了
以上就是編譯PHP7擴(kuò)展(以memcached為例)的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注億速云其它相關(guān)文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。