首页 > 开发 > PHP > 正文

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

2024-05-04 22:56:02
字体:
来源:转载
供稿:网友
///// by iwind.org  coldwind/iwind/month/ccterran
//这个函数是对[code][/code]标签里的内容进行分析,并输出
//例如:
//  <?php $string='
以下内容为程序代码:
<?$hello="hello";?>
sssssssssssss';
//        highlight($string);
//    ?>
//保留了不完全的标签,如只有
以下内容为程序代码:
,没有
,则输出中含有[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]";
    }
}
}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表