最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

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

来源:http://erdangjiade.com/topic/123251.html 你好,世界。 2017-10-04 21:03浏览(21)

function replace($str)
{	
	static $color=0;
	$color+=50;
	return "<font style="color:rgb(255,".$color.",33)">".$str."</font>";
}

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.'<br/>';

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

	}

评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2