Use preg_match_all();
Something like preg_match_all("/(\(<\?.*\?>)/im", $Text, $Array_PHP_Code,
PREG_PATTERN_ORDER); should do it. It might need some work, but you'll get
it. :)
Niklas
-----Original Message-----
From: Alejandro [mailto:[EMAIL PROTECTED]
Sent: 11. maaliskuuta 2003 14:59
To: [EMAIL PROTECTED]
Subject: [PHP] Help with ereg()
Hi all. I'm trying to deal with Regular Expressions, but somehow it is
getting more difficult. I�m trying to do the folowing:
Read a text and get all of the PHP code out of it, highlight it and then
print all in nice HTML. I'm using this to get the PHP code:
ereg("<\?.*\?>",$Text,$PHP_code);
It works, yeah, but on a situation like this:
<?
echo "aaaa";
?>
This is some other no php code
<?
echo "this is PHP";
?>
Thanks anyway
###########################################
This message has been scanned by F-Secure Anti-Virus for Internet Mail.
For more information, connect to http://www.F-Secure.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php