在安装mysqli的时候,出现error: ext/mysqlnd/mysql_float_to_double.h: No such file or directory

Posted 运维笔记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在安装mysqli的时候,出现error: ext/mysqlnd/mysql_float_to_double.h: No such file or directory相关的知识,希望对你有一定的参考价值。

/application/php5.5.28/include/php/main/../main/php_config.h:2113:1: warning: this is the location of the previous definition/home/neo/tools/php-5.5.28/ext/mysqli/mysqli_api.c:36:47: error: ext/mysqlnd/mysql_float_to_double.h: No such file or directorymake: *** [mysqli_api.lo] Error 1
我的解决方法:
直接修改源码,把找不到的那个头文件的路径修改为绝对路径,编译通过了,也能正常使用

# pwd
/home/neo/tools/php-5.5.28/ext/mysqli
# vim mysqli_api.c

把第36行的

#include “ext/mysqlnd/mysql_float_to_double.h”
修改为
#include “/home/neo/tools/php-5.5.28/ext/mysqlnd/mysql_float_to_double.h”





以上是关于在安装mysqli的时候,出现error: ext/mysqlnd/mysql_float_to_double.h: No such file or directory的主要内容,如果未能解决你的问题,请参考以下文章

php安装缺少mysqli扩展的原因及解决方法

安装PHP出现make: *** [sapi/cli/php] Error 1 解决办法

Linux 安装mysqli扩展

报错提示:mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in..的处理方式

PHP判断SQL语句是否合法:mysqli_error()

PHP操作数据库出现错误:mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in