Heim >Backend-Entwicklung >PHP-Tutorial >PHPMyAdmin设置数据库连接端口代码

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

PHP中文网
PHP中文网Original
2017-03-30 16:37:473354Durchsuche

本文章来给大家介绍关于PHPMyAdmin设置数据库连接端口代码,有需要了解的朋友可参考。

相关mysql视频教程推荐:《mysql教程

/* 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′

http://www.bkjia.com/PHPjc/631275.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/631275.htmlTechArticle本文章来给大家介绍关于PHPMyAdmin设置数据库连接端口代码,有需要了解的朋友可参考。 代码如下 复制代码 /* Authentication type and info */ $cfg...

以上就是PHPMyAdmin设置数据库连接端口代码_PHP教程的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn