ב"ה
תנסה:
PHP קוד:
<?php
preg_match_all("#\[mycode\](.+?)\[/mycode\]#is",$content,$matchs,PREG_SET_ORDER);
for($i=0;$i<=count($matchs);$i++)
{
$content=preg_replace("#\[mycode\](.+?)\[/mycode\]#is","<div>".highlight_string($matchs[$i][1])."</div>",$content,1);
}
?>