>  기사  >  백엔드 개발  >  php-extension - php7에 protobuf 확장을 설치하는 방법은 무엇입니까?

php-extension - php7에 protobuf 확장을 설치하는 방법은 무엇입니까?

WBOY
WBOY원래의
2016-10-17 09:30:173040검색

centos 7에 PHP7 확장 protobuf를 설치하는 방법은 무엇입니까?

현재 서버에 php의 protobuf를 설치하려고 하는데 설치에 실패했습니다!

제가 사용하는 확장 프로그램은 https://github.com/allegro/ph... ?

컴파일 및 설치 과정에서 phpize와 ./configure를 전달했는데, make를 해보니 오류가 보고되었습니다!

일부 오류는 다음과 같습니다.

<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>

그 이유가 무엇인지 알려주세요. 확장버전이 따라오지 못하는 걸까요? 아니면 일부 종속성이 설치되지 않았기 때문입니까?

이 확장 패키지를 php7에 설치할 수 없다면 어떤 다른 확장을 설치할 수 있나요?

답글 내용:

centos 7에 PHP7 확장 protobuf를 설치하는 방법은 무엇입니까?

현재 서버에 php의 protobuf를 설치하려고 하는데 설치에 실패했습니다!

제가 사용하는 확장 프로그램은 https://github.com/allegro/ph... ?

컴파일 및 설치 과정에서 phpize와 ./configure를 전달했는데, make를 해보니 오류가 보고되었습니다!

일부 오류는 다음과 같습니다.

<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>

그 이유가 무엇인지 알려주세요. 확장버전이 따라오지 못하는 걸까요? 아니면 일부 종속성이 설치되지 않았기 때문입니까?

이 확장 패키지를 php7에 설치할 수 없다면 어떤 다른 확장을 설치할 수 있나요?

https://github.com/google/pro...
공식 라이브러리를 바로 이용할 수는 없나요?

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.