这篇文章主要讲解了“PHP要怎么安装扩展”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“php要怎么安装扩展”吧!安装扩展注意与Apache+PHP或者Nginx+PHP的运行模式不同,Wor
这篇文章主要讲解了“PHP要怎么安装扩展”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“php要怎么安装扩展”吧!
注意
与Apache+PHP或者Nginx+PHP的运行模式不同,WorkerMan是基于PHP命令行 PHP CLI 运行的,使用的是不同的PHP可执行程序,使用的php.ini文件也可能不同。所以在网页中打印phpinfo()看到安装了某个扩展,不代表命令行的PHP CLI也安装了对应的扩展。
如何确定PHP CLI安装了哪些扩展
运行 php -m 会列出命令行 PHP CLI 已经安装的扩展,结果类似如下:
~# php -m[PHP Modules]libeventposixpcntl...
如何确定PHP CLI 的php.ini文件的位置
当我们安装扩展时,可能需要手动配置php.ini文件,把扩展加进去,所以要确认PHP CLI的php.ini文件的位置。可以运行php --ini查找PHP CLI的ini文件位置,结果类似如下(各个系统显示结果会有差异):
~# php --iniConfiguration File (php.ini) Path: /etc/php5/cliLoaded Configuration File: /etc/php5/cli/php.iniScan for additional .ini files in: /etc/php5/cli/conf.dAdditional .ini files parsed: /etc/php5/cli/conf.d/apc.ini,/etc/php5/cli/conf.d/libevent.ini,/etc/php5/cli/conf.d/memcached.ini,/etc/php5/cli/conf.d/mysql.ini,/etc/php5/cli/conf.d/pdo.ini,/etc/php5/cli/conf.d/pdo_Mysql.ini...
方法一、使用apt或者yum命令安装
如果PHP是通过 apt 或者 yum 命令安装的,则扩展也可以通过 apt 或者 yum 安装
debian/ubuntu等系统apt安装PHP扩展方法(非root用户需要加sudo命令)
利用apt-cache search查找扩展包
~# apt-cache search memcached phpphp-apc - APC (Alternative PHP Cache) module for PHP 5php5-memcached - memcached module for php5
使用apt-get install安装扩展包
~# apt-get install -y php5-memcachedReading package lists... DoneReading state infORMation... Done...
Centos等系统yum安装PHP扩展方法
利用yum search查找扩展包
~# yum search memcached phpphp-pecl-memcached - memcached module for php5
使用yum install安装扩展包
~# yum install -y php-pecl-memcachedReading package lists... DoneReading state information... Done...
说明:
使用apt或者yum安装PHP扩展会自动配置php.ini文件,安装完直接可用,十分方便。缺点是有些扩展在apt或者yum中没有对应的扩展安装包。
方法二、使用pecl安装
使用pecl install命令安装扩展
pecl install安装
~# pecl install memcacheddownloading memcached-2.2.0.tgz ...Starting to download memcached-2.2.0.tgz (70,449 bytes)....
配置php.ini
通过运行 php --ini查找php.ini文件位置,然后在文件中添加extension=memcached.so
方法三、源码编译安装(一般是安装PHP自带的扩展,以安装pcntl扩展为例)
利用php -v命令查看当前的PHP CLI的版本
~# php -vPHP 5.3.29-1~dotdeb.0 with Suhosin-Patch (cli) (built: Aug 14 2014 19:55:20)Copyright (c) 1997-2014 The PHP GroupZend Engine v2.3.0, Copyright (c) 1998-2014 Zend Technologies
根据版本下载PHP源代码
PHP历史版本下载页面:Http://php.net/releases/
解压源码压缩包
例如下载的压缩包名称是php-5.3.29.tar.gz
~# tar -zxvf php-5.3.29.tar.gzphp-5.3.29/php-5.3.29/README.WIN32-BUILD-SYSTEMphp-5.3.29/netware/...
进入源码中的ext/pcntl目录
~# cd php-5.3.29/ext/pcntl/
运行 phpize 命令
~# phpizeConfiguring for:PHP api Version: 20090626Zend Module Api No: 20090626Zend Extension Api No: 220090626
运行 configure命令
~# ./configurechecking for grep that handles long lines and -e... /bin/grepchecking for egrep... /bin/grep -E...
运行 make 命令
~# make/bin/bash /tmp/php-5.3.29/ext/pcntl/libtool --mode=compile cc ...-I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend......
运 行make install 命令
~# make installInstalling shared extensions: /usr/lib/php5/20090626/
配置ini文件
通过运行 php --ini查找php.ini文件位置,然后在文件中添加extension=pcntl.so
说明: 此方法一般用来安装PHP自带的扩展,例如posix扩展和pcntl扩展。除了用phpize编译某个扩展,也可以重新编译整个PHP,在编译时用参数添加扩展,例如在源码根目录运行
~# ./configure --enable-pcntl --enable-posix ...~# make && make install
方法四、phpize安装
如果要安装的扩展在php源码ext目录中没有,那么这个扩展需要到http://pecl.php.net 搜索下载
以安装libevent扩展为例(假设系统安装了libevent-dev库)
下载libevent扩展文件压缩包(在当前系统哪个目录下载随意)
~# wget http://pecl.php.net/get/libevent-0.1.0.tgz--2015-05-26 21:43:40-- http://pecl.php.net/get/libevent-0.1.0.tgzResolving pecl.php.net... 104.236.228.160Connecting to pecl.php.net|104.236.228.160|:80... connected.HTTP request sent, awaiting response... 200 OKLength: 9806 (9.6K) [application/octet-stream]Saving to: “libevent-0.1.0.tgz”100%[=======================================================>] 9,806 41.4K/s in 0.2s
解压扩展文件压缩包
~# tar -zxvf libevent-0.1.0.tgzpackage.xmllibevent-0.1.0/config.m4libevent-0.1.0/CREDITSlibevent-0.1.0/libevent.c....
进入到源码目录
~# cd libevent-0.1.0/
运行phpize命令
~# phpizeConfiguring for:PHP Api Version: 20090626Zend Module Api No: 20090626Zend Extension Api No: 220090626
运行configure命令
~# ./configurechecking for grep that handles long lines and -e... /bin/grepchecking for egrep... /bin/grep -Echecking for a sed that does not truncate output... /bin/sedchecking for cc... ccchecking whether the C compiler works... yes...
运行make命令
~# /bin/bash /data/test/libevent-0.1.0/libtool --mode=compile cc -I. -I/data/test/libevent-0.1.0 -DPHP_ATOM_INC -I/data/test/libevent-0.1.0/include...
运行make install命令
~# make installInstalling shared extensions: /usr/lib/php5/20090626/
配置ini文件
通过运行 php --ini查找php.ini文件位置,然后在文件中添加extension=libevent.so
感谢各位的阅读,以上就是“php要怎么安装扩展”的内容了,经过本文的学习后,相信大家对php要怎么安装扩展这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!
--结束END--
本文标题: php要怎么安装扩展
本文链接: https://lsjlt.com/news/298487.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0