Heim >Backend-Entwicklung >PHP-Tutorial >php 批改文件中变量

php 批改文件中变量

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 10:38:42982Durchsuche

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

?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn