首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

php 批改文件中变量

2012-08-24 
php 修改文件中变量$filename bbbbbbb$dir dirname(__FILE__)$path $dir..DIRECTORY_SEPARATOR

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));}

?

热点排行