Lid |
|
Hallo,
Ik heb een ubb script gemaakt, zodat je een php code kan laten highlighten in een tekst.
Maar nu zou ik nog willen, dat de php functies automatisch een link worden naar php.net/functie
Dit heb ik al:
<?
function php_string($text){
$text = stripslashes($text);
ob_start();
highlight_string($text);
$text = ob_get_contents();
ob_end_clean();
return $text;
}
function forumubb($bericht){
$bericht = str_replace ("<","<",$bericht);
$bericht = str_replace (">",">",$bericht);
$bericht = preg_replace("/\[PHP](.*)\[\/PHP\]/esiU", "php_string('$1')", $bericht);
return $bericht;
}
?>
<? function php_string($text){ return $text; } function forumubb($bericht){ $bericht = preg_replace("/\[PHP](.*)\[\/PHP\]/esiU", "php_string('$1')", $bericht); return $bericht; } ?>
Wat moet ik hier nog aan aanpassen om dus de php functie in de highligt een link te laten worden.
Bedankt
Mvg,
Rick
|