在ubuntu16.10 PHP测试连接MySQL中出现Call to undefined function: mysql_connect()

Posted The blog of Andy Wei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在ubuntu16.10 PHP测试连接MySQL中出现Call to undefined function: mysql_connect()相关的知识,希望对你有一定的参考价值。

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\';
View Code

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

最后连接成功:

参考:http://blog.sina.com.cn/s/blog_6b8bea470100qrdw.html

 

以上是关于在ubuntu16.10 PHP测试连接MySQL中出现Call to undefined function: mysql_connect()的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu16.10 中安装mysql

Ubuntu16.04~16.10(php7.0)网站环境一键搭建脚本

在Ubuntu 16.10 Server 上部署 Moodle

在Ubuntu 16.10安装mysql workbench报未安装软件包 libpng12-0错误

Linux 编译安装 Mysql5.7

Ubuntu16.10安装Ocata之4:Neutron