Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17199 программистов и 1835 роботов. Сейчас ищут 1565 программистов ...
DB_common::escapeSimple()
Вернуться к: DB
DB_common::escapeSimple()
DB_common::escapeSimple() – Escapes a string according to the current DBMS's standards
Synopsis
string escapeSimple ( string $str )
Escape a string according to the current DBMS's standards.
Parameter
- string $str
-
the input to be escaped
Return value
string - the escaped string
Note
This function can not be called statically.
Function available since: Release 1.6.0
Example
Using escapeSimple()
<?php
// Once you have a valid DB object named $db...
$name = "all's well";
$sql = "SELECT * FROM clients WHERE name = '"
. $db->escapeSimple($name) . "'";
$res =& $db->query($sql);
?>
Вернуться к: DB