ubuntu 上给PHP安装扩展 Msgpack 和 Yar
首先说明Yar是干什么的。 新浪著名的大神级人物鸟哥,开发的一个支持并行的PHP扩展。 源地址http://www.laruence.com/2012/09/15/2779.html 其特点就是可以高效的封装好供外部访问的接口,用途嘛, ,你懂的。 下面开始实况直播,如何才能把大神的yar用上。
首先说明Yar是干什么的。
新浪著名的大神级人物鸟哥,开发的一个支持并行的PHP扩展。
源地址 http://www.laruence.com/2012/09/15/2779.html
其特点就是可以高效的封装好供外部访问的接口,用途嘛,,你懂的。
下面开始实况直播,如何才能把大神的yar用上。
一、下载。
恩,没错,在那个文章的底部,鸟哥提供了github的下载地址。
但是,这是不够的,因为这个框架需要 一个名为 Msgpack 的扩展,同样的,这个也是鸟哥维护的,再次膜拜!!
二、msgpack。
恩。。。。。
貌似下载好发现里面都是写.c .h 的文件,没错,我们需要自己来编译!
1.msgpack
解压压缩包,直接看 README.md
## Install ### Install from PECL Msgpack is an PECL extension, thus you can simply install it by: ```` pecl install msgpack ```` ### Compile Msgpack from source ```` $/path/to/phpize $./configure $make && make install ````
恩,我们发现原来这个可以通过pecl在线安装
打开一个终端,输入
pecl install msgpack
发现没有成功,给的提示是这样的
Failed to download pecl/msgpack within preferred state "stable", latest release is version 0.5.5, stability "beta", use "channel://pecl.php.net/msgpack-0.5.5" to install install failed
这是由于msgpack还没有稳定版本,按照上面的提示,我们这样输入
pecl install channel://pecl.php.net/msgpack-0.5.5
还是没有成功,但是提示变了
WARNING: configuration download directory "/build/buildd/php5-5.5.3+dfsg/pear-build-download" is not writeable. Change download_dir config variable to a writeable dir to avoid this warning Cannot install, php_dir for channel "pecl.php.net" is not writeable by the current user
看来是我们对文件夹没有写入权限,下面我们切换到root用户后重新执行上面的命令
内容太多,截下最后的一段吧。
Build process completed successfully Installing '/usr/lib/php5/20121212/msgpack.so' Installing '/usr/include/php5/ext/msgpack/php_msgpack.h' install ok: channel://pecl.php.net/msgpack-0.5.5 configuration option "php_ini" is not set to php.ini location You should add "extension=msgpack.so" to php.ini
下面的操作就是打开配置文件,把扩展写到文件中去
sudo gedit /etc/php5/apache2/php.ini
然后重启apache
sudo /etc/init.d/apache2 restart
查看phpinfo
到此为止,我们就安装完了msgpack的PHP扩展。
三、Yar
解压下载的 yar-master.zip 我们还是先看 README.md 这个文件,其实直接在github上看也是一样的。。。。
安装要求,要求安装一下的php扩展,这就是上一步的重要性!
## Requirement - PHP 5.2+ - Curl - Json - Msgpack (Optional)
### Install Yar Yar is an PECL extension, thus you can simply install it by: ``` pecl install yar ```
看来我们也可以通过pecl命令直接进行安装啊,貌似不是那么顺利
downloading yar-1.2.1.tgz ... Starting to download yar-1.2.1.tgz (35,174 bytes) .........done: 35,174 bytes 28 source files, building running: phpize Configuring for: PHP Api Version: 20121113 Zend Module Api No: 20121212 Zend Extension Api No: 220121212 building in /tmp/pear/temp/pear-build-rootoSsn5u/yar-1.2.1 running: /tmp/pear/temp/yar/configure checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for a sed that does not truncate output... /bin/sed checking for cc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking how to run the C preprocessor... cc -E checking for icc... no checking for suncc... no checking whether cc understands -c and -o together... yes checking for system library directory... lib checking if compiler supports -R... no checking if compiler supports -Wl,-rpath,... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking target system type... x86_64-unknown-linux-gnu checking for PHP prefix... /usr checking for PHP includes... -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib checking for PHP extension directory... /usr/lib/php5/20121212 checking for PHP installed headers prefix... /usr/include/php5 checking if debug is enabled... no checking if zts is enabled... no checking for re2c... no configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers. checking for gawk... no checking for nawk... nawk checking if nawk is broken... no checking whether to enable yar support... yes, shared checking for curl protocol support... yes, shared checking for msgpack packager support... no checking for cURL in default path... not found configure: error: Please reinstall the libcurl distribution - easy.h should be in <curl-dir>/include/curl/ ERROR: `/tmp/pear/temp/yar/configure' failed </curl-dir>
在这里我们可以看到是由于我们缺少一个 re2c 0.13.4 或者更新的版本才行,还有,我们的curl模块也不太符合要求,要求重装一下。
下面开始解决问题!
我在这个地址里找到了 re2c http://download.csdn.net/download/morre/5702707 ,在下面的解决过程中跳过了re2c的安装,看来上面的只是警告,没有太大问题。
让我们回到yar的编译
编译需要 phpize,所以我们要安装 phpize,安装phpize需要运行
yum install php-devel
返回的提示是
程序“yum”尚未安装。 您可以使用以下命令安装: sudo apt-get install yum
恩,所以先安装yum,在安装phpize,注意,安装phpize的时候要以root用户执行!
然后重新安装了curl库,重启apache
sudo apt-get install curl libcurl3 libcurl3-dev php5-curl
sudo /etc/init.d/apache2 restart
下面再次执行pecl的安装
pecl install yar
然后就没有问题啦,经过短暂的等待,显示下面的提示,就安装完成啦!
Build process completed successfully Installing '/usr/lib/php5/20121212/yar.so'install ok: channel://pecl.php.net/yar-1.2.1configuration option "php_ini" is not set to php.ini locationYou should add "extension=yar.so" to php.ini
下面的步骤和上次一样,修改配置文件,重启apache。
sudo gedit /etc/php5/apache2/php.ini sudo /etc/init.d/apache2 restart
重启之后,在phpinfo中并没有看见对应的扩展。

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

熱門話題

PHP 8.4 帶來了多項新功能、安全性改進和效能改進,同時棄用和刪除了大量功能。 本指南介紹如何在 Ubuntu、Debian 或其衍生版本上安裝 PHP 8.4 或升級到 PHP 8.4

CakePHP 是 PHP 的開源框架。它旨在使應用程式的開發、部署和維護變得更加容易。 CakePHP 基於類似 MVC 的架構,功能強大且易於掌握。模型、視圖和控制器 gu

Visual Studio Code,也稱為 VS Code,是一個免費的原始碼編輯器 - 或整合開發環境 (IDE) - 可用於所有主要作業系統。 VS Code 擁有大量針對多種程式語言的擴展,可以輕鬆編寫

CakePHP 是一個開源MVC 框架。它使應用程式的開發、部署和維護變得更加容易。 CakePHP 有許多函式庫可以減少大多數常見任務的過載。

本教程演示瞭如何使用PHP有效地處理XML文檔。 XML(可擴展的標記語言)是一種用於人類可讀性和機器解析的多功能文本標記語言。它通常用於數據存儲

JWT是一種基於JSON的開放標準,用於在各方之間安全地傳輸信息,主要用於身份驗證和信息交換。 1.JWT由Header、Payload和Signature三部分組成。 2.JWT的工作原理包括生成JWT、驗證JWT和解析Payload三個步驟。 3.在PHP中使用JWT進行身份驗證時,可以生成和驗證JWT,並在高級用法中包含用戶角色和權限信息。 4.常見錯誤包括簽名驗證失敗、令牌過期和Payload過大,調試技巧包括使用調試工具和日誌記錄。 5.性能優化和最佳實踐包括使用合適的簽名算法、合理設置有效期、

字符串是由字符組成的序列,包括字母、數字和符號。本教程將學習如何使用不同的方法在PHP中計算給定字符串中元音的數量。英語中的元音是a、e、i、o、u,它們可以是大寫或小寫。 什麼是元音? 元音是代表特定語音的字母字符。英語中共有五個元音,包括大寫和小寫: a, e, i, o, u 示例 1 輸入:字符串 = "Tutorialspoint" 輸出:6 解釋 字符串 "Tutorialspoint" 中的元音是 u、o、i、a、o、i。總共有 6 個元
