php7 如何安装扩展 protobuf ?

发布于 2022-09-04 00:26:31 字数 1428 浏览 20 评论 0

在centos 7 中,如何安装 PHP7 的扩展 protobuf?

我现在在我的服务器上安装 php 的 protobuf 安装不成功!

我使用的扩展是 https://github.com/allegro/ph...

在编译安装的时候 phpize 和 ./configure 都过了,但是到了 make 的时候就报错!

部分错误如下:

/home/lvyun/php-protobuf/protobuf.c: In function ?.b_parse_field_value
/home/lvyun/php-protobuf/protobuf.c:1004:20: error: lvalue required as leof assignment
    Z_TYPE_P(value) = IS_DOUBLE;
                    ^
/home/lvyun/php-protobuf/protobuf.c:1009:20: error: lvalue required as leof assignment
    Z_TYPE_P(value) = IS_LONG;
                    ^
/home/lvyun/php-protobuf/protobuf.c:1014:20: error: lvalue required as leof assignment
    Z_TYPE_P(value) = IS_LONG;
                    ^
/home/lvyun/php-protobuf/protobuf.c:1019:20: error: lvalue required as leof assignment
    Z_TYPE_P(value) = IS_DOUBLE;
                    ^
/home/lvyun/php-protobuf/protobuf.c:1024:20: error: lvalue required as leof assignment
    Z_TYPE_P(value) = IS_LONG;
                    ^
/home/lvyun/php-protobuf/protobuf.c:1029:22: error: ?.S_BOOL?.undeclause in this function)
    Z_TYPE_P(value) = IS_BOOL;
                      ^
/home/lvyun/php-protobuf/protobuf.c:1034:20: error: lvalue required as leof assignment
    Z_TYPE_P(value) = IS_LONG;

求教,这是什么原因?是 扩展的版本没有跟上吗?还是因为有什么依赖没有安装?

如果这个扩展包不能安装在 php7 上,那还有什么扩展可以安装?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

幸福还没到 2022-09-11 00:26:31

Linux上编译

pecl install protobuf 安装的最新版本

然后按照提示加入到php.ini就可以了,前提是安装了php-pear php-devel

不用编译

如果编译出现了麻烦,可以直接composer require google/protobuf,这个拥有和扩展文件相同的类和方法

不过效率肯定没扩展那么高了,在Windows的集成环境中值得一用。

因为Windows下也有protoc的工具(下载protoc-3.X.X-win32.zip),所以本地编译proto文件,以及调试就无需那么麻烦。

源代码:https://github.com/google/pro...

谈下烟灰 2022-09-11 00:26:31

https://github.com/google/pro...
直接使用官方库不行吗?

简单爱 2022-09-11 00:26:31

可以到这个地方看看:https://segmentfault.com/a/11...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文