一个把字符串按php代码高亮显示的函数

发表于:2007-07-14来源:作者:点击数: 标签:
///// by iwind.orgcoldwind/iwind/month/ccterran //这个函数是对[code][/code]标签里的内容进行分析,并输出 //例如: //? php $string='[code]?$hello=hello;?[/code]sssssssssssss'; //highlight($string); //? //保留了不完全的标签,如只有[code],没有[/c
///// by iwind.org  coldwind/iwind/month/clearcase/" target="_blank" >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]";
    }
}
}

原文转自:http://www.ltesting.net