Deprecated: mysql_connect(): The mysql extension i_MySQL
原因:
php 5个版本,5.2、5.3、5.4、5.5,怕跟不上时代,新的服务器直接上5.5,但是程序出现如下错误:Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in,看意思就很明了,说mysql_connect这个模块将在未来弃用,请你使用mysqli或者PDO来替代。
网友解决方式:
解决方法1:
禁止php报错
display_errors = On |
改为 |
display_errors = Off |
鉴于这个服务器都是给用户用的,有时候他们需要报错(…都是给朋友用的,^_^),不能这做,让他们改程序吧,看方案2.
解决方法2:
常用的php语法连接mysql如下
<?php |
$link = mysql_connect( 'localhost' , 'user' , 'password' );
|
mysql_select_db( 'dbname' , $link );
|
改成mysqi |
<?php |
$link = mysqli_connect( 'localhost' , 'user' , 'password' , 'dbname' );
|
常用mysql建表SQL如下
<?php |
// 老的 |
mysql_query( 'CREATE TEMPORARY TABLE `table`' , $link );
|
// 新的 |
mysqli_query( $link , 'CREATE TEMPORARY TABLE `table`' );
|
解决方法三:
在php程序代码里面设置报警级别
<?php |
error_reporting (E_ALL ^ E_DEPRECATED);
|
Deprecated的问题就这样解决掉了,不过还是建议大家尽快取消mysql的用户,全部都走向mysqli或者mysqlnd等等。mysql确实是太不安全而且太老旧了。
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
华丽丽的分割线
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
经过多次尝试,方法1对于我来说没用,方法2解决了一个函数的问题,可能又导致后续的调用函数的问题,诸如我遇到的有:
1:“Warning: mysqli_query() expects parameter 1 to be mysqli, string given in F:/xampp/htdocs/op154/system/database/mysql.php on line 11”
2:“ Notice: Trying to get property of non-object problem ”
还有各种在xampp的index.php中提示的警告和致命错误;
最后,放弃,用方法3,眼不见为净,解决。但是不太爽,实在不符合我的钻牛角尖死磕精神,不过先放着,做其他正事。待学习后能有改进方法!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]
