高亮度显示php源代码
更新时间:2006年10月09日 00:00:00 作者:
高亮度显示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");
?>
相关文章
PHP和Mysqlweb应用开发核心技术 第1部分 Php基础-3 代码组织和重用2
创建可以调用的函数以便重用代码把参数传递给函数并且从函数返回值和脚本的不同部分中的变量和数据进行交互2011-07-07windows8.1下Apache+Php+MySQL配置步骤
这篇文章主要介绍了windows8.1下Apache+Php+MySQL配置步骤,需要的朋友可以参考下2015-10-10php imagecreatetruecolor 创建高清和透明图片代码小结
php imagecreatetruecolor 生成图片示例代码,需要的朋友可以参考下。2010-05-05
最新评论