摘要: 有时候数据库密码改了或者数据库删了,就会有一个mysqli的链接报错,是因为直接使用了类似代码 $connection = new mysqli('127.0.0.1', 'test_user', 'test_password', 'test_database'); 然后就会出来这样一个警告 PHP 阅读全文
posted @ 2022-02-14 10:27 李照耀 阅读(268) 评论(1) 推荐(0) 编辑
摘要: create user test_user@'%' identified by 'test2022@'; grant all privileges on test.* to test_user@'%' with grant option; flush privileges; 这样就可以创建一个叫 t 阅读全文
posted @ 2022-02-14 10:08 李照耀 阅读(926) 评论(0) 推荐(0) 编辑