高亮度显示php源代码_php基础
程序员文章站
2024-04-03 08:20:10
...
高亮度显示php源代码
function HeighPHPcode($Heightstring){
do{
$z=0;
if(preg_match('/(.*?) /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("/(.*?) /s","$code",$Heightstring,1);
}
}while($z);
return $Heightstring;
}
##########################################################################################
#$PHPcode就是要被加亮的代码
$PHPcode=
function HeighPHPcode($Heightstring){
do{
$z=0;
if(preg_match('/(.*?) /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("/(.*?) /s","$code",$Heightstring,1);
}
}while($z);
return $Heightstring;
}
END;
##########################################################################################
echo HeighPHPcode("$PHPcode");
?>
do{
$z=0;
if(preg_match('/
$z=1;
$code='';
ob_start();
highlight_string($reg[1]);
$code = ob_get_contents();
ob_end_clean();
$reg[1] = addslashes($reg[1]);
$Heightstring=preg_replace("/
}
}while($z);
return $Heightstring;
}
##########################################################################################
#$PHPcode就是要被加亮的代码
$PHPcode=
function HeighPHPcode($Heightstring){
do{
$z=0;
if(preg_match('/
$z=1;
$code='';
ob_start();
highlight_string($reg[1]);
$code = ob_get_contents();
ob_end_clean();
$reg[1] = addslashes($reg[1]);
$Heightstring=preg_replace("/
}
}while($z);
return $Heightstring;
}
END;
##########################################################################################
echo HeighPHPcode("$PHPcode");
?>
推荐阅读
-
php循环table实现一行两列显示的方法_php实例
-
PHP基于cookie与session统计网站访问量并输出显示的方法,cookiesession
-
php条件下怎么实现点击左边记录名,具体内容在页面右边显示
-
php基础学习- 一些废弃的用法*提高性能
-
php学习笔记之基础知识,php学习笔记
-
php读取csv文件后,uft8 bom导致在页面上显示出现问题的解决方法_PHP教程
-
php循环table实现一行两列显示的方法,table两列_PHP教程
-
nginx+php-fpm一部分网页显示空白
-
挑战最棒的留言本的源码(一)_php基础
-
这个总是显示33行语法错误,请问html和php混编有什么规则吗?