PHP 8.5.0 Alpha 4 available for testing

Voting

: max(six, eight)?
(Example: nine)

The Note You're Voting On

nicolas
19 years ago
Note that mysql_real_escape_string doesn't prepend backslashes to \x00, \n, \r, and and \x1a as mentionned in the documentation, but actually replaces the character with a MySQL acceptable representation for queries (e.g. \n is replaced with the '\n' litteral). (\, ', and " are escaped as documented) This doesn't change how you should use this function, but I think it's good to know.

<< Back to user notes page

To Top