码迷,mamicode.com
首页 > 数据库 > 详细

PHP读取配置文件连接MySQL数据库

时间:2018-08-10 01:17:25      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:www.   关闭数据库   函数   操作   连接   rto   die   url   RoCE   

读取配置文件方法parse_ini_file($filepath,$section)

代码:

conn.php

<?php
	//连接数据库
	//$conn =new mysqli(‘localhost‘,‘root‘,‘‘,‘test‘) or die("连接失败<br/>");
	//读取配置文件
	$ini= parse_ini_file("test.ini");
	$conn =new mysqli($ini["servername"],$ini["username"],$ini["password"],$ini["dbname"]) or die("连接失败<br/>");

	
	//操作数据库
	$result=$conn->query("select * from cartoon;");
	
	//输出数据
	while($row=$result->fetch_assoc()){
		print_r($row);
		echo "<br/>";
	}
	
	//关闭数据库
	$conn->close();
?>

test.ini

[mysql]
servername="localhost"
username="root"
password=""
dbname="test"

输出

技术分享图片

 

 

1、parse_ini_file() 函数解析一个配置文件,并以数组的形式返回其中的设置。

语法:

parse_ini_file(file,process_sections)

技术分享图片

2.例子1:

"test.ini" 的内容:

技术分享图片
[names]
me = Robert
you = Peter

[urls]
first = "http://www.example.com"
second = "http://www.w3school.com.cn"
技术分享图片

PHP 代码:

<?php
  $tmp = parse_ini_file("test.ini");
  var_dump($tmp); ?>

输出:

技术分享图片
array(4) {
  ["me"]=>
  string(6) "Robert"
  ["you"]=>
  string(5) "Peter"
  ["first"]=>
  string(22) "http://www.example.com"
  ["second"]=>
  string(26) "http://www.w3school.com.cn"
}
技术分享图片

例子2:

"test.ini" 的内容:

技术分享图片
[names]
me = Robert
you = Peter

[urls]
first = "http://www.example.com"
second = "http://www.w3school.com.cn"
技术分享图片

PHP 代码(process_sections 设置为 true):

<?php
  $tmp = parse_ini_file("test.ini",true);
  var_dump($tmp); ?>

输出:

技术分享图片
array(2) {
  ["names"]=>
  array(2) {
    ["me"]=>
    string(6) "Robert"
    ["you"]=>
    string(5) "Peter"
  }
  ["urls"]=>
  array(2) {
    ["first"]=>
    string(22) "http://www.example.com"
    ["second"]=>
    string(26) "http://www.w3school.com.cn"
  }
}

PHP读取配置文件连接MySQL数据库

标签:www.   关闭数据库   函数   操作   连接   rto   die   url   RoCE   

原文地址:https://www.cnblogs.com/1906859953Lucas/p/9452496.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!