溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php如何安裝protobuf 擴(kuò)展

發(fā)布時(shí)間:2021-09-07 10:41:43 來源:億速云 閱讀:228 作者:小新 欄目:web開發(fā)

這篇文章主要為大家展示了“php如何安裝protobuf 擴(kuò)展”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“php如何安裝protobuf 擴(kuò)展”這篇文章吧。

我們知道Protocol Buffers是Google定義的一種跨語言、跨平臺、可擴(kuò)展的數(shù)據(jù)傳輸及存儲的協(xié)議,因?yàn)閷⒆侄螀f(xié)議分別放在傳輸兩端,傳輸數(shù)據(jù)中只包含數(shù)據(jù)本身,不需要包含字段說明,所以傳輸數(shù)據(jù)量小,解析效率高。感興趣的可以訪問 https://developers.google.com/protocol-buffers/docs/overview 。Protocol Buffers官方只支持C++, Java, Python, C#, Go,如果想在PHP中使用Protocol Buffers,需要借助于第三方的擴(kuò)展,安裝方法如下。

下載資源壓縮包 https://github.com/allegro/php-protobuf/

步驟如下:

1、上傳到服務(wù)器,解壓,進(jìn)入解壓后的目錄

[root@test ~]# unzip php-protobuf-master.zip

[root@test ~]# cd php-protobuf-master

2、執(zhí)行phpize

[root@test php-protobuf-master]# /soft/php/bin/phpize

Configuring for:

PHP Api Version:         20090626

Zend Module Api No:      20090626

Zend Extension Api No:   220090626

3、編譯、make安裝

[root@test php-protobuf-master]# ./configure  --with-php-config=/soft/php/bin/php-config

[root@test php-protobuf-master]# make

[root@test php-protobuf-master]# make install

Installing shared extensions: /soft/php/lib/php/extensions/no-debug-non-zts-20090626/

安裝之后在目錄生成擴(kuò)展文件

[root@test php-protobuf-master]# ll /soft/php/lib/php/extensions/no-debug-non-zts-20090626/

-rwxr-xr-x. 1 root root  130247 3?.  8 11:19 protobuf.so

編輯php.ini文件,添加一行

[root@test php-protobuf-master]# vi /soft/php/lib/php.ini

[memcache]

extension_dir = "/soft/php/lib/php/extensions/no-debug-non-zts-20090626/"

extension = "redis.so"

extension = "protobuf.so"

保存退出后重啟php,之后打開瀏覽器查看 phpinfo.php 有protobuf 模塊,說明安裝成功;

php如何安裝protobuf 擴(kuò)展

以上是“php如何安裝protobuf 擴(kuò)展”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI