php 修改文件中变量_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php 修改文件中变量

php 修改文件中变量

 2012/2/28 18:02:17  tw5566  程序员俱乐部  我要评论(0)
  • 摘要:$filename="bbbbbbb";$dir=dirname(__FILE__);$path=$dir."".DIRECTORY_SEPARATOR."config.php";echo$path;$contents=file_get_contents($path);$contents=modify_ini_value($contents,"theme",$filename);file_put_contents($path,$contents)
  • 标签:PHP 文件
$filename ="bbbbbbb";
$dir = dirname(__FILE__);
$path = $dir."".DIRECTORY_SEPARATOR."config.php";
echo $path;
$contents = file_get_contents($path);
$contents = modify_ini_value($contents,"theme",$filename);
file_put_contents($path,$contents);

function modify_ini_value($content,$key,$replace){
	$match = '/([ \t]*)(\$'.$key.'\s*=\s*\"?)(.*?)(\"?)(\s*;\s*$)/m';
	return (preg_replace($match,"\${1}\${2}{$replace}\${4}\${5}",$content));
}

?

发表评论
用户名: 匿名