红联Linux门户
Linux帮助

在ubuntu16.10 PHP测试连接MySQL中出现mysql_connect()的解决

发布时间:2016-11-14 09:37:29来源:linux网站作者:ok_008
1.问题:
测试php7.0 链接mysql数据库的时候发生错误:
Fatal error: Uncaught Error: Call to undefined function mysqli_connect()
即使把 /etc/php/7.0/apache2/php.ini 中的行:
;extension=php_mysql.dll
修改成(即:取消行前面的分号";"):
extension=php_mysql.dll
问题依然没解决。
 
测试文件:
require_once __DIR__.'/config.php';
// 2. 获取要查询打用户名(通过地址栏传递参数)
$username=isset($_GET['username'])?$_GET['username']:'';
if (empty($username)){
echo '用户名不能为空.';
}
// 3. 连接数据库
$conn=@mysqli_connect($db_host,$db_user,$db_psw) or die('数据库连接失败.'.mysqli_error());
var_dump($conn);
 
config.php文件:
<?php
/**
* Created by PhpStorm.
* User: andy
* Date: 16-11-13
* Time: 下午7:34
*/
$db_host='127.0.0.1';
$db_user='root';
$db_psw='123456';
$db_name='test';
$db_charset='utf8';
 
2.有效的解决方法:
sudo apt-get install php7.0-mysql
sudo dpkg-reconfigure  php7.0-mysql
sudo /etc/init.d/mysql restart
sudo /etc/init.d/apache2 restart
 
最后连接成功:
在ubuntu16.10 PHP测试连接MySQL中出现mysql_connect()的解决
 
参考:http://www.linuxdiyf.com/linux/17118.html
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25979.html