欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHPMyAdmin设置数据库连接端口代码

程序员文章站 2022-05-18 15:58:44
...
本文章来给大家介绍关于PHPMyAdmin设置数据库连接端口代码,有需要了解的朋友可参考。
代码如下 复制代码

/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = ‘config’;
$cfg['Servers'][$i]['user'] = ‘root’;
$cfg['Servers'][$i]['password'] = ”;
$cfg['Servers'][$i]['port'] = ’3307′;
$cfg['Servers'][$i]['extension'] = ‘mysql’;
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = ”;

比如MySQL的端口设置为3308,可以把配置文件设置为:$cfg['Servers'][$i]['port'] = ’3308′;