Fatal error: Call to undefined function mysql_connect()(致命错误:调用未定义函数 mysql_connect())
问题描述
我已经设置了 PHP、MySQL 和 Apache.localhost()
用于 PHP,它运行良好.但是在我下载 MySQL 之后,它会报告:
I have set up PHP, MySQL, and Apache. localhost()
for PHP and it is working well. But after I downloaded MySQL, it reports:
致命错误:调用未定义函数 mysql_connect()
Fatal error: Call to undefined function mysql_connect()
我该如何解决这个问题?
How can I fix this?
推荐答案
您升级到 PHP 7,现在 mysql_connect
已弃用.检查你的:
You upgraded to PHP 7, and now mysql_connect
is deprecated. Check yours with:
php -version
将其更改为 mysqli_connect
如下:
$host = "127.0.0.1";
$username = "root";
$pass = "foobar";
$con = mysqli_connect($host, $username, $pass, "your_database");
如果您要升级旧版 PHP,现在您面临的任务是使用 mysqli_*
函数升级所有 mysql_*
函数.
If you're upgrading legacy PHP, now you're faced with the task of upgrading all your mysql_*
functions with mysqli_*
functions.
这篇关于致命错误:调用未定义函数 mysql_connect()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:致命错误:调用未定义函数 mysql_connect()


- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- Laravel 仓库 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01