码迷,mamicode.com
首页 > Web开发 > 详细

修改config.php配置

时间:2015-04-22 17:47:31      阅读:398      评论:0      收藏:0      [点我收藏+]

标签:

$data=array(
"name"=>"222222",
"tel"=>159131,
"address"=>"广州市天河区",
"config[‘title‘]"=>"你好中",
);
if(update_config(‘config.php‘,$data)){
echo"ok";
}

     function update_config($file, $data,$type="string"){
	 if(!file_exists($file)){
	 return false;
	 }
	 if(!is_array($data)){
	 return false;
	 }
     $str=file_get_contents($file);
	 $str2=$str;
	
    
	 foreach($data as $key=>$val){
	  $pattern=‘/‘.$key.‘=(.*?)\;/i‘;
	  if(is_int($val)){
        $str2=preg_replace($pattern,$key.‘=‘.$val.‘;‘,$str2);
       }else{
	  $str2=preg_replace($pattern,$key.‘="‘.$val.‘";‘,$str2);
	   }
	 }
	 file_put_contents($file,$str2);
	 return true;
 }

  config.php

<?php
	$name="222222";//kkkk
    $tel=159131;
    $phone=4561321;
    $address="广州市天河区";
?>

  

修改config.php配置

标签:

原文地址:http://www.cnblogs.com/vania/p/4447972.html

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