Home  >  Article  >  Backend Development  >  php-extension - How to install protobuf extension in php7?

php-extension - How to install protobuf extension in php7?

WBOY
WBOYOriginal
2016-10-17 09:30:172999browse

How to install the PHP7 extension protobuf in centos 7?

I am currently trying to install php’s protobuf on my server but the installation is not successful!

The extension I use is https://github.com/allegro/ph... ?

During the compilation and installation, phpize and ./configure were passed, but when it came to make, an error was reported!

Some errors are as follows:

<code>/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;</code>

Please tell me, what is the reason for this? Is the expanded version not keeping up? Or is it because some dependencies are not installed?

If this extension package cannot be installed on php7, what other extensions can be installed?

Reply content:

How to install the PHP7 extension protobuf in centos 7?

I am currently trying to install php’s protobuf on my server but the installation is not successful!

The extension I use is https://github.com/allegro/ph... ?

During the compilation and installation, phpize and ./configure were passed, but when it came to make, an error was reported!

Some errors are as follows:

<code>/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;</code>

Please tell me, what is the reason for this? Is the expanded version not keeping up? Or is it because some dependencies are not installed?

If this extension package cannot be installed on php7, what other extensions can be installed?

https://github.com/google/pro...
Isn’t it possible to use the official library directly?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn