编程语言
首页 > 编程语言> > 缺少PHP包括(.h)

缺少PHP包括(.h)

作者:互联网

我正在尝试为非默认的php二进制位置安装PHP扩展mongodb.我正在使用PECL:

sudo pecl install mongodb

经过长时间的记录,我得到了这个

/tmp/pear/temp/mongodb/src/bson.c:29:17: fatal error: php.h: No such file or directory
 #include <php.h>
          ^
compilation terminated.
Makefile:338: recipe for target 'src/bson.lo' failed
make: *** [src/bson.lo] Error 1
ERROR: `make' failed

我怎么能摆脱这个?

>操作系统:Ubuntu 15.10
> PHP版本:5.6.10
> /usr/include没有php.h
> /usr/include / php5 / include没有文件
>我通过apt-get安装了PHP
>我已经安装并重新安装了php5-dev软件包

解决方法:

与此处相同的解决方案:Attempting to install OAuth on Ubuntu but getting errors

安装PCRE库(Perl 5兼容的正则表达式库):

# sudo apt-get update
# sudo apt-get install libpcre3 libpcre3-dev

标签:php-extension,php,mongodb,header-files
来源: https://codeday.me/bug/20190727/1556606.html