PHP连接数据库后总是提示格式错误要怎么解决?求指点~

发布网友 发布时间:2022-04-28 05:16

我来回答

2个回答

懂视网 时间:2022-04-28 09:37

php数据库连接错误是因为PHP7.0废除了“mysql_connect”函数,其解决办法就是使用“mysqli_connect”函数连接数据库即可。

推荐:《PHP视频教程》

PHP连接数据库报错

原因:PHP7.0废除了mysql_connect()函数

代替函数:

mysqli_connect();

例:

<?PHP
 $conn=mysqli_connect("localhost","root","root");
 if($conn){
 echo"ok";
 }else{
 echo"error"; 
 }
?>

热心网友 时间:2022-04-28 06:45

查看PHP7.1官方文档,对这种错误的解释

New E_WARNING and E_NOTICE errors have been introced when invalid strings are coerced using operators expecting numbers (+ - * / ** % << >> | & ^) or their assignment equivalents. An E_NOTICE is emitted when the string begins with a numeric value but contains trailing non-numeric characters, and an E_WARNING is emitted when the string does not contain a numeric value.

在使用(+ - * / ** % << >> | & ^) 运算时,例如a+b,如果a是开始一个数字值,但包含非数字字符(123a),b不是数字值开始时(b456),就会有A non-numeric value encountered警告。

你的里面年月日的表达用了-,php认为是减号,年月日被认为是运算。

你可以搜一下网上的教程有解决办法。不过看你的截图,这只是个notice, 你可以在控制器加上ini_set("error_reporting","E_ALL & ~E_NOTICE"); 就不会显示了。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com