############Funktionen########### function convertphp($text) { $neu = stripcslashes($text); $neu = htmlentities($neu); $neu = ""; ob_start(); highlight_string($neu); $high = ob_get_contents(); ob_end_clean(); return "
".$high."
"; } function color_source($string) { $array_contenido = explode("[PHP]",$string); $final = $array_contenido[0]; for($i = 1;$i <= count($array_contenido) - 1;$i++) { $array_contents = explode("[/PHP]",$array_contenido[$i]); ob_start(); highlight_string($array_contents[0]); $array_contents[0] = ob_get_contents(); ob_end_clean(); $final .=' PHP:
'.$array_contents[0]."
".$array_contents[1]; } return $final;} ############### replacement #################### $text = preg_replace("!\[php\](.*)?\[/php\]!i",color_source("$1"),$tut[text]); (im moment nicht in benutzung) ############## Aufruf ########################## $text = color_source($tut[text]); ############## $tut[text] ###################### öhm.... nimm irgendwas mit [PHP] und so.....