1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | | PHP-Quelltext function klappparse($text='') {
preg_match_all("#\[_klapp(.*)\](.*)\[/_klapp(.*)\]#Usi",$text,$treffer);
foreach ($treffer[0] as $wert)
{
srand(microtime()*1000000);
$zufall = rand(1,10000);
$neu = preg_replace("#\[_klapp(.*)\](.*)\[/_klapp(.*)\]#Usi",'<a href="javascript:klapptext('.$zufall.');"><img src="images/plus.gif" id="bild'.$zufall.'" style="border:0;"><span id="span'.$zufall.'">hier klicken zum aufklappen</span></a ><div id="'.$zufall.'" class="klapptext" style="display:none;">\\2</div></div>',$wert);
$text = str_replace($wert,$neu,$text);
}
return $text;
} |