Home  >  Article  >  Backend Development  >  php modify variables in files

php modify variables in files

巴扎黑
巴扎黑Original
2016-11-23 15:10:181138browse

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

}


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn