10

PHP7 中的 pecl yaml 存在一些问题(请参阅下面的错误日志)。我可以看到:https ://pecl.php.net/package/yaml有一些 2.0 的 RC 可以解决这个问题......我目前正在运行命令:

pecl install yaml && echo "extension=yaml.so" > /usr/local/etc/php/conf.d/ext-yaml.ini. 

但猜测这不会安装 RC 版本。如何安装 RC?也许有一个参数可以提供..?

我可以谷歌以下解决方案(未经测试)

pear config-set preferred_state beta

但我想这将为所有扩展设置一个全局 beta 状态。我只想将此扩展安装为 beta ..


错误日志

running: make
/bin/bash /tmp/pear/temp/pear-build-defaultuserPVGidl/yaml-1.2.0/libtool --mode=compile cc  -I. -I/tmp/pear/temp/yaml -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserPVGidl/yaml-1.2.0/include -I/tmp/pear/temp/pear-build-defaultuserPVGidl/yaml-1.2.0/main -I/tmp/pear/temp/yaml -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib  -DHAVE_CONFIG_H  -g -O2   -c /tmp/pear/temp/yaml/yaml.c -o yaml.lo
mkdir .libs
 cc -I. -I/tmp/pear/temp/yaml -DPHP_ATOM_INC -I/tmp/pear/temp/pear-build-defaultuserPVGidl/yaml-1.2.0/include -I/tmp/pear/temp/pear-build-defaultuserPVGidl/yaml-1.2.0/main -I/tmp/pear/temp/yaml -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -DHAVE_CONFIG_H -g -O2 -c /tmp/pear/temp/yaml/yaml.c  -fPIC -DPIC -o .libs/yaml.o
In file included from /tmp/pear/temp/yaml/yaml.c:35:0:
/tmp/pear/temp/yaml/php_yaml.h:56:40: fatal error: ext/standard/php_smart_str.h: No such file or directory
 #include <ext/standard/php_smart_str.h>
                                        ^
compilation terminated.
Makefile:195: recipe for target 'yaml.lo' failed
make: *** [yaml.lo] Error 1
ERROR: `make' failed
4

3 回答 3

17

因此,经过一些额外的谷歌搜索后,我发现如何通过搜索如何安装 beta 包来安装,而不是像我第一次寻找的 RC 一样.. face-palm

http://php.net/manual/en/install.pecl.pear.php

..所以正确的命令是:

pecl install yaml-beta && echo "extension=yaml.so" > /usr/local/etc/php/conf.d/ext-yaml.ini


稳定版 2.0.0 于 2016 年 9 月 24 日发布。版本 1.xx 仍然支持,所以你需要指定版本号,例如:

pecl install yaml-2.0.0 && echo "extension=yaml.so" > /usr/local/etc/php/conf.d/ext-yaml.ini

在https://pecl.php.net/package/yaml查找最新版本

于 2015-12-09T01:51:25.507 回答
3

在 ubuntu 16.04 (PHP 7.0) 上,您可以这样做:

apt install libyaml-dev php-dev php-pear
pecl install yaml-2.0.0
echo "extension=yaml.so" > /etc/php/7.0/cli/conf.d/20-yaml.ini
echo "extension=yaml.so" > /etc/php/7.0/apache2/conf.d/20-yaml.ini
  • php-pear需要使用pecl命令
  • php-devphpize命令需要(由 pecl 使用)
  • libyaml-dev需要... yaml 库
于 2017-05-16T19:08:59.927 回答
2

到目前为止,答案对我的Centos 7 PHP 7不起作用。

但我想怎么做:

yum install php70w-devel php70w-pear zlib-devel curl-devel gcc
yum install libyaml-devel
pecl install yaml-beta

我希望这也能帮助其他使用 Centos 的人。

于 2017-01-26T21:30:53.723 回答