MySQL8.0版本和PHP7不兼容问题?
MySQL8.0版本和PHP7不兼容一般有两种情况:
1、主要是MySQL8.0默认是utfmb4的格式,PHP默认的是UTF8格式;
解决方法:需要将MySQL8.0默认格式设置为UTF8
2、身份认证的加密方式不兼容导致的,MySQL8.0中默认方式为caching_sha2_password。
解决方法:
新建用老版加密方式初始化密码的用户即可:
CREATEUSERusername@localhostidentifiedwithmysql_native_passwordby'password';
然后在my.cnf中添加一行:
default_authentication_plugin=mysql_native_password;
推荐教程:《PHP教程》
Atas ialah kandungan terperinci MySQL8.0版本和PHP7不兼容问题?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!