1 个回复
CMSYOU - CMS企业网站定制专家
赞同来自:
set_error_handler(
create_function(
'$severity, $message, $file, $line',
'throw new ErrorException($message, $severity, $severity, $file, $line);'
)
);
set_error_handler(
function($severity, $message, $file, $line){
throw new ErrorException($message, $severity, $severity, $file, $line);
}
);
//首先切到mysql库
use mysql;
//创建用户
create user 'guzi'@'localhost' identified by '7e63de77';
//授权
grant select,insert,update,create on 'guzi'@'localhost';
//更新权限
flush privileges;
ALTER USER 'guzi'@'localhost' IDENTIFIED WITH mysql_native_password BY '7e63de77';
flush privileges;
最新活动:2020-05-23 10:41
浏览:2415 次
关注:2 人
Copyright © 2008-2025 CMSYOU - 互助问答社区 - 粤ICP备10060801号-3 RSS Feed
欢迎加入QQ群(346494585)
“让我们一起来学习CMS建站吧!”
要评论问题请先登录或注册