当前位置: 移动技术网 > IT编程>开发语言>PHP > 高亮度显示php源代码

高亮度显示php源代码

2019年05月22日  | 移动技术网IT编程  | 我要评论

高亮度显示php源代码 <?php
function heighphpcode($heightstring){
do{
   $z=0;
   if(preg_match('/<phpcode>(.*?)</phpcode>/s',$heightstring,$reg)) {
     $z=1;
     $code='';
     ob_start();
     highlight_string($reg[1]);
     $code = ob_get_contents();
     ob_end_clean();
     $reg[1] = addslashes($reg[1]);
     $heightstring=preg_replace("/<phpcode>(.*?)</phpcode>/s","$code",$heightstring,1);
    }
}while($z);
return $heightstring;
}
##########################################################################################
#$phpcode就是要被加亮的代码
$phpcode= <<<end
<phpcode>
<?php
function heighphpcode($heightstring){
do{
   $z=0;
   if(preg_match('/<phpcode>(.*?)</phpcode>/s',$heightstring,$reg)) {
     $z=1;
     $code='';
     ob_start();
     highlight_string($reg[1]);
     $code = ob_get_contents();
     ob_end_clean();
     $reg[1] = addslashes($reg[1]);
     $heightstring=preg_replace("/<phpcode>(.*?)</phpcode>/s","$code",$heightstring,1);
    }
}while($z);
return $heightstring;
}
</phpcode>
end;
##########################################################################################
echo   heighphpcode("$phpcode");
?>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网