ID: 12042 Updated by: zak Reported By: [EMAIL PROTECTED] Old Summary: $ can't be escaped when using ereg function Old Status: Open Status: Bogus Bug Type: *Regular Expressions Operating System: LINUX PHP Version: 4.0.6 New Comment: This is known and expected behavior. Please review the regex docs more carefully - also search the php-general mailing list archives. The quick fix is to place 3 backslashes in front of the $. Previous Comments: ------------------------------------------------------------------------ [2001-07-11 05:46:09] [EMAIL PROTECTED] Please see the codes below: <? $arrfile = '<?include("$DOCUMENT_ROOT/TEMPLATES/TOP-BANNER.HTM");?>'; if(eregi("<\?include\(\"\$DOCUMENT_ROOT/TEMPLATES/TOP-BANNER\.HTM\"\);\?>",$arrfile)) print "good\n"; else print "bad\n"; ?> The result will return "bad" because the eregi can't find the expression in the $arrfile. If I removed the $, it will return "good". I guess "$" can't be escaped inside the eregi function. Please help. ------------------------------------------------------------------------ ATTENTION! Do NOT reply to this email! To reply, use the web interface found at http://bugs.php.net/?id=12042&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]