For Programmers: Free Programming Magazines  


Home > Archive > PHP Documentation > September 2004 > cvs: phpdoc /en/reference/mysql/functions mysql-real-escape-string.xml









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author cvs: phpdoc /en/reference/mysql/functions mysql-real-escape-string.xml
Nuno Lopes

2004-09-29, 8:04 pm

nlopess Wed Sep 29 12:24:43 2004 EDT

Modified files:
/phpdoc/en/reference/mysql/functions mysql-real-escape-string.xml
Log:
use is_numeric() instead of is_int()

http://cvs.php.net/diff.php/phpdoc/...18&r2=1.19&ty=u
Index: phpdoc/en/reference/mysql/functions/mysql-real-escape-string.xml
diff -u phpdoc/en/reference/mysql/functions/mysql-real-escape-string.xml:1.18 phpdoc/en/reference/mysql/functions/mysql-real-escape-string.xml:1.19
--- phpdoc/en/reference/mysql/functions/mysql-real-escape-string.xml:1.18 Wed Sep 29 11:12:42 2004
+++ phpdoc/en/reference/mysql/functions/mysql-real-escape-string.xml Wed Sep 29 12:24:43 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.18 $ -->
+<!-- $Revision: 1.19 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.100 -->
<refentry id="function.mysql-real-escape-string">
<refnamediv>
@@ -128,7 +128,7 @@
$value = stripslashes($value);
}
// Quote if not integer
- if (!is_int($value)) {
+ if (!is_numeric($value)) {
$value = "'" . mysql_real_escape_string($value) . "'";
}
return $value;
Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com