安装扩展

注意

与Apache+PHP或者Nginx+PHP的运行模式不同,WorkerMan是基于PHP命令行 PHP CLI 运行的,使用的是不同的PHP可执行程序,使用的php.ini文件也可能不同。所以在网页中打印phpinfo()看到安装了某个扩展,不代表命令行的PHP CLI也安装了对应的扩展。

如何确定PHP CLI安装了哪些扩展

运行 php -m 会列出命令行 PHP CLI 已经安装的扩展,结果类似如下:

  1. ~# php -m
  2. [PHP Modules]
  3. libevent
  4. posix
  5. pcntl
  6. ...

如何确定PHP CLI 的php.ini文件的位置

当我们安装扩展时,可能需要手动配置php.ini文件,把扩展加进去,所以要确认PHP CLI的php.ini文件的位置。可以运行php --ini查找PHP CLI的ini文件位置,结果类似如下(各个系统显示结果会有差异):

  1. ~# php --ini
  2. Configuration File (php.ini) Path: /etc/php5/cli
  3. Loaded Configuration File: /etc/php5/cli/php.ini
  4. Scan for additional .ini files in: /etc/php5/cli/conf.d
  5. Additional .ini files parsed: /etc/php5/cli/conf.d/apc.ini,
  6. /etc/php5/cli/conf.d/libevent.ini,
  7. /etc/php5/cli/conf.d/memcached.ini,
  8. /etc/php5/cli/conf.d/mysql.ini,
  9. /etc/php5/cli/conf.d/pdo.ini,
  10. /etc/php5/cli/conf.d/pdo_mysql.ini
  11. ...

给PHP CLI安装扩展(安装memcached扩展为例)

方法一、使用apt或者yum命令安装

如果PHP是通过 apt 或者 yum 命令安装的,则扩展也可以通过 apt 或者 yum 安装

debian/ubuntu等系统apt安装PHP扩展方法(非root用户需要加sudo命令)

1、利用apt-cache search查找扩展包

  1. ~# apt-cache search memcached php
  2. php-apc - APC (Alternative PHP Cache) module for PHP 5
  3. php5-memcached - memcached module for php5

2、使用apt-get install安装扩展包

  1. ~# apt-get install -y php5-memcached
  2. Reading package lists... Done
  3. Reading state information... Done
  4. ...

centos等系统yum安装PHP扩展方法

1、利用yum search查找扩展包

  1. ~# yum search memcached php
  2. php-pecl-memcached - memcached module for php5

2、使用yum install安装扩展包

  1. ~# yum install -y php-pecl-memcached
  2. Reading package lists... Done
  3. Reading state information... Done
  4. ...

说明:

使用apt或者yum安装PHP扩展会自动配置php.ini文件,安装完直接可用,十分方便。缺点是有些扩展在apt或者yum中没有对应的扩展安装包。

方法二、使用pecl安装

使用pecl install命令安装扩展

1、pecl install安装

  1. ~# pecl install memcached
  2. downloading memcached-2.2.0.tgz ...
  3. Starting to download memcached-2.2.0.tgz (70,449 bytes)
  4. ....

2、配置php.ini

通过运行 php --ini查找php.ini文件位置,然后在文件中添加extension=memcached.so

方法三、源码编译安装(一般是安装PHP自带的扩展,以安装pcntl扩展为例)

1、利用php -v命令查看当前的PHP CLI的版本

  1. ~# php -v
  2. PHP 5.3.29-1~dotdeb.0 with Suhosin-Patch (cli) (built: Aug 14 2014 19:55:20)
  3. Copyright (c) 1997-2014 The PHP Group
  4. Zend Engine v2.3.0, Copyright (c) 1998-2014 Zend Technologies

2、根据版本下载PHP源代码

PHP历史版本下载页面:http://php.net/releases/

3、解压源码压缩包

例如下载的压缩包名称是php-5.3.29.tar.gz

  1. ~# tar -zxvf php-5.3.29.tar.gz
  2. php-5.3.29/
  3. php-5.3.29/README.WIN32-BUILD-SYSTEM
  4. php-5.3.29/netware/
  5. ...

4、进入源码中的ext/pcntl目录

  1. ~# cd php-5.3.29/ext/pcntl/

5、运行 phpize 命令

  1. ~# phpize
  2. Configuring for:
  3. PHP Api Version: 20090626
  4. Zend Module Api No: 20090626
  5. Zend Extension Api No: 220090626

6、运行 configure命令

  1. ~# ./configure
  2. checking for grep that handles long lines and -e... /bin/grep
  3. checking for egrep... /bin/grep -E
  4. ...

7、运行 make 命令

  1. ~# make
  2. /bin/bash /tmp/php-5.3.29/ext/pcntl/libtool --mode=compile cc ...
  3. -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend...
  4. ...

8、运 行make install 命令

  1. ~# make install
  2. Installing shared extensions: /usr/lib/php5/20090626/

9、配置ini文件

通过运行 php --ini查找php.ini文件位置,然后在文件中添加extension=pcntl.so

说明:
此方法一般用来安装PHP自带的扩展,例如posix扩展和pcntl扩展。除了用phpize编译某个扩展,也可以重新编译整个PHP,在编译时用参数添加扩展,例如在源码根目录运行

  1. ~# ./configure --enable-pcntl --enable-posix ...
  2. ~# make && make install

方法四、phpize安装

如果要安装的扩展在php源码ext目录中没有,那么这个扩展需要到http://pecl.php.net 搜索下载

以安装libevent扩展为例(假设系统安装了libevent-dev库)

1、下载libevent扩展文件压缩包(在当前系统哪个目录下载随意)

  1. ~# wget http://pecl.php.net/get/libevent-0.1.0.tgz
  2. --2015-05-26 21:43:40-- http://pecl.php.net/get/libevent-0.1.0.tgz
  3. Resolving pecl.php.net... 104.236.228.160
  4. Connecting to pecl.php.net|104.236.228.160|:80... connected.
  5. HTTP request sent, awaiting response... 200 OK
  6. Length: 9806 (9.6K) [application/octet-stream]
  7. Saving to: libevent-0.1.0.tgz
  8. 100%[=======================================================>] 9,806 41.4K/s in 0.2s

2、解压扩展文件压缩包

  1. ~# tar -zxvf libevent-0.1.0.tgz
  2. package.xml
  3. libevent-0.1.0/config.m4
  4. libevent-0.1.0/CREDITS
  5. libevent-0.1.0/libevent.c
  6. ....

3、进入到源码目录

  1. ~# cd libevent-0.1.0/

4、运行phpize命令

  1. ~# phpize
  2. Configuring for:
  3. PHP Api Version: 20090626
  4. Zend Module Api No: 20090626
  5. Zend Extension Api No: 220090626

5、运行configure命令

  1. ~# ./configure
  2. checking for grep that handles long lines and -e... /bin/grep
  3. checking for egrep... /bin/grep -E
  4. checking for a sed that does not truncate output... /bin/sed
  5. checking for cc... cc
  6. checking whether the C compiler works... yes
  7. ...

6、运行make命令

  1. ~# /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
  2. ...

7、运行make install命令

  1. ~# make install
  2. Installing shared extensions: /usr/lib/php5/20090626/

8、配置ini文件

通过运行 php --ini查找php.ini文件位置,然后在文件中添加extension=libevent.so