///// by iwind.org coldwind/iwind/month/ccterran
//这个函数是对[code][/code]标签里的内容进行分析,并输出
//例如:
// <?php $string='[code]<?$hello="hello";?>[/code]sssssssssssss';
// highlight($string);
// ?>
//保留了不完全的标签,如只有[code],没有[/code],则输出中含有[code]
function highlight($string){
$arr=explode("[code]",$string);
$total=sizeof($arr);
for($i=0;$i<$total;$i++){
if(ereg("(.+)\[/code\]",$arr[$i])){
list($astr,$bstr)=split("\[/code\]",$arr[$i],"2");
highlight_string($astr);
echo"$bstr";
}
else{
if($i!="0"){
echo"[code]";
}
echo"$arr[$i]";
}
}
}
文章来源于领测软件测试网 https://www.ltesting.net/
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073