欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

ereg() 着色返回显示匹配结束

程序员文章站 2022-05-29 15:13:25
...
function replace($str)
{	
	static $color=0;
	$color+=50;
	return "".$str."";
}

if(  @ereg($match,$str,$array) )
	{
		if(count($array)>1)
		{ 
			$string=$str;
			$pos=strpos($string,$array[1]);
			$string=substr_replace($string,replace($array[1]),$pos,strlen($array[1]));
			$pos=$pos+strlen(replace($array[1]));
			echo $string.'
'; for($i=2;$i'; } } //end if(count($array)>1) print_r($array); }