我想在Ubuntu 14上构建和使用自定义PHP 5.5.30,包括 pthreads 。但我还想保留常规PHP版本,并在需要时在版本之间来回切换。
我缺乏时间,我不擅长构建PHP - 我从未做过任何构建 - 所以我想要一个能够以最简单的方式抽象流程的解决方案。
为了实现它似乎正确使用 phpbrew 。
所以我去下载它,安装了一些显然需要构建的新软件包,最后我启动了以下内容:
phpbrew install --name php-5.5.30-zts 5.5.30 +bcmath +cli +ctype +dom +fileinfo +filter +json +mbregex +mbstring +mhash +pcre +pdo +posix +sockets +tokenizer +curl +zts +intl +mysql +pgsql +session
phpbrew use php-5.5.29-zts
构建成功终止,CLI确实使用新构建的php ......
之前:
me@ubuntu:/$ php -v
PHP 5.5.30-1+deb.sury.org~trusty+1 (cli) (built: Oct 4 2015 16:23:01)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2015 Zend Technologies
with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2015, by Zend Technologies
me@ubuntu:/$ php -m
[PHP Modules]
bcmath
bz2
calendar
Core
ctype
curl
date
dba
dom
ereg
exif
fileinfo
filter
ftp
gd
gettext
hash
iconv
intl
json
ldap
libxml
mbstring
mcrypt
memcached
mhash
mysql
mysqli
openssl
pcntl
pcre
PDO
pdo_mysql
pdo_pgsql
pdo_sqlite
pgsql
Phar
posix
readline
Reflection
session
shmop
SimpleXML
soap
sockets
SPL
sqlite3
standard
sysvmsg
sysvsem
sysvshm
tokenizer
wddx
xml
xmlreader
xmlwriter
Zend OPcache
zip
zlib
[Zend Modules]
Zend OPcache
后:
me@ubuntu:/$ php -v
PHP 5.5.30 (cli) (built: Oct 6 2015 11:48:18)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2015 Zend Technologies
me@ubuntu:/$ php -m
[PHP Modules]
bcmath
Core
ctype
date
dom
ereg
fileinfo
filter
hash
intl
json
libxml
mbstring
mhash
mysql
mysqli
mysqlnd
pcre
PDO
pdo_mysql
pdo_pgsql
pgsql
Phar
posix
Reflection
session
SimpleXML
sockets
SPL
standard
tokenizer
xml
xmlreader
xmlwriter
xsl
zlib
[Zend Modules]
但是,每个人都可以看到......生成的版本的可用模块中既没有列出任何zts模块也没有列出pthread。
所以......问题:
修改
我也试过以下版本无济于事。 phpbrew拒绝在其构建中包含zts:
phpbrew install --name php-5.5.30-zts-only 5.5.30 -- --enable-maintainer-zts
phpbrew install --name php-5.5.30-zts-only 5.5.30 +zts -- --enable-maintainer-zts
phpbrew install --name php-5.5.30-zts-only 5.5.30 -- --enable-maintainer-zts --without-readline
所有这些都是最小的PHP,我想用zts构建,为了简单起见。调用php -m
时,无结果会产生zts模块。
也许有某种先决条件?有些软件包要安装吗?
编辑2:
我尝试了以下内容:
phpbrew install 5.5.30 -- --enable-maintainer-zts
phpbrew use php-5.5.30
命令php -i | grep zts
会产生以下结果:
Configure Command => './configure' '--prefix=/home/linux1/.phpbrew/php/php-5.5.30' '--with-config-file-path=/home/linux1/.phpbrew/php/php-5.5.30/etc' '--with-config-file-scan-dir=/home/linux1/.phpbrew/php/php-5.5.30/var/db' '--with-pear=/home/linux1/.phpbrew/php/php-5.5.30/lib/php' '--disable-all' '--enable-session' '--enable-short-tags' '--with-zlib=/usr' '--with-libdir=lib/x86_64-linux-gnu' '--enable-bcmath' '--with-bz2=/usr' '--enable-calendar' '--enable-cli' '--enable-ctype' '--enable-fileinfo' '--enable-filter' '--enable-shmop' '--enable-sysvsem' '--enable-sysvshm' '--enable-sysvmsg' '--enable-json' '--enable-mbregex' '--enable-mbstring' '--with-mhash=/usr' '--enable-pcntl' '--with-pcre-regex' '--with-pcre-dir=/usr' '--enable-pdo' '--enable-phar' '--enable-posix' '--with-readline=/usr' '--enable-sockets' '--enable-tokenizer' '--enable-dom' '--enable-libxml' '--enable-simplexml' '--enable-xml' '--enable-xmlreader' '--enable-xmlwriter' '--with-xsl' '--with-libxml-dir=/usr' '--enable-zip' '--with-openssl=yes' '--enable-maintainer-zts'
extension_dir => /home/linux1/.phpbrew/php/php-5.5.30/lib/php/extensions/no-debug-zts-20121212 => /home/linux1/.phpbrew/php/php-5.5.30/lib/php/extensions/no-debug-zts-20121212
不确定是否有帮助。
结论:
我忘了安装 pthreads 扩展名,使用以下内容:
phpbrew ext install pthreads 2.0.10
请注意,您需要使用(phpbrew use php-my-build
)要安装扩展程序的php版本才能安装。
另请注意,安装pthreads
仅在+openssl
作为变体包含时才有效(如果没有,尝试调用远程HTTPS URL会失败)。
答案 0 :(得分:3)
是的,phpbrew最好在一台电脑上使用不同的php版本,而不需要多台虚拟机。
你应该指定这样的选项----enable-maintainer-zts
步骤:
1. phpbrew install php-5.5.30 -- --enable-maintainer-zts
2. phpbrew use php-5.5.30
3. phpbrew ext install pthreads 2.0.10