您好,登錄后才能下訂單哦!
環境說明:
操作系統:CentOS 5.11 x86_64
php版本:php 5.3.3(yum方式安裝)
原來php安裝過程:
yum -y install httpd php53 php53-bcmath php53-cli php53-common php53-dba php53-devel php53-gd php53-mbstring php53-xml php53-xmlrpc php53-snmp php53-mysql
現在因為項目原因需要安裝libevent及pcntl和php-mcrypt,php-mcrypt的安裝過程見
http://fengwan.blog.51cto.com/508652/1661548
1.php5.3.3安裝libevent
yum -y install libevent-devel wget tar xf libevent-0.1.0.tgz cd libevent-0.1.0 /usr/bin/phpize ./configure --enable-libevent --with-php-config=/usr/bin/php-config make make install #之后就能見到 [root@CentOS5 libevent-0.1.0]# make install Installing shared extensions: /usr/lib64/php/modules/ echo 'extension=libevent.so'>/etc/php.d/libevent.ini
如果只安裝libevent就足夠的話,這個時候重新啟動httpd服務即可
[root@CentOS5 ~]# php -m |grep libevent libevent
下面是phpinfo()里的模塊信息
2.php 5.3.3安裝pcntl
pcntl目前存在于php-5.3.3.tar.gz的源碼中,需要我們去官網下載源碼。
wget http://museum.php.net/php5/php-5.3.3.tar.gz cd php-5.3.3/ext/pcntl /usr/bin/phpize ./configure --enable-pcntl --with-php-config=/usr/bin/php-config make make install echo 'extension=pcntl.so' >/etc/php.d/pcntl.ini #重新啟動httpd [root@CentOS5 ~]# php -m |grep pcntl pcntl
如果在運行php -m |grep pcntl的時候出現
PHP Warning: Module 'pcntl' already loaded in Unknown on line 0
則可能是出現了重復加載pcntl的情況,則將剛才的/etc/php.d/pcntl.ini刪除,重新啟動即可。
3.php 5.3.3安裝phar并下載phpunit作為測試工具
wget http://museum.php.net/php5/php-5.3.3.tar.gz yum -y install pcre-devel #phar需要使用pcre模塊 cd php-5.3.3/ext/phar /usr/bin/phpize ./configure --enable-phar --with-php-config=/usr/bin/php-config make make install echo 'extension=phar.so' >/etc/php.d/phar.ini
如果你安裝suhosin模塊,則需要
修改/etc/php.d/suhosin.ini這行為
suhosin.executor.include.whitelist = phar
如果有設置php.ini的open_basedir則需要注釋掉,防止出現各種問題
下載phpunit
wget https://phar.phpunit.de/phpunit.phar chmod +x phpunit.phar mv phpunit.phar /usr/local/bin/phpunit phpunit --version PHPUnit 4.7.7 by Sebastian Bergmann and contributors.
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。