ID: 47229
User updated by: daniel at code-emitter dot com
Reported By: daniel at code-emitter dot com
Status: Bogus
Bug Type: PCRE related
Operating System: any, see docs
PHP Version: 5.2.8
New Comment:
preg_match('/^([a-zA-Z0-9\-'.preg_quote("!#$%&'*+/=?^_`{|}~.",
'/').']{1,64})@(.*)$/', $address, $matches)
But this will become a problem, when mixing like shown above. An
escaped "-" outside of [...] does no harm, but an unescaped "-" inside
does.
Previous Comments:
------------------------------------------------------------------------
[2009-01-28 12:38:36] [email protected]
The '-' just have special meaning in the regex when used whithin '[ ]',
which are escaped as expected. So, there is no possibility to '-' break
something.
var_dump(preg_quote("[0-2]")); // string(7) "\[0-2\]"
------------------------------------------------------------------------
[2009-01-28 12:23:33] daniel at code-emitter dot com
Description:
------------
preg_quote does not escape the "-" (minus) character but it should.
Reproduce code:
---------------
preg_quote("0-9", '/')
Expected result:
----------------
preg_quote("0-9", '/') == "0\-9"
Actual result:
--------------
preg_quote("0-9", '/') == "0-9"
Depending on the used string this can become a dead loss of the used
regular expression because all characters become valid.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=47229&edit=1