本文實例講述了mysql_escape_string()函數(shù)用法。分享給大家供大家參考,具體如下:
使用 mysql_escape_string() 對查詢中有疑問的數(shù)據(jù)進(jìn)行編碼:
有一些數(shù)據(jù)例如:
char query(1024);
sprintf (query, "select * from my_tbl where name = '%s'",name);
如果這個時候,name 中包含了如: "0'Malley,Brian" 這樣的數(shù)據(jù)就會產(chǎn)生這樣的查詢語句: select * from my_tbl where name = '0'Malley,Brian' 這樣就導(dǎo)致了錯誤的產(chǎn)生。
調(diào)用 mysql_escape_string() 的過程如下:
my $item = "aaa's bbb"
my $escape_item = mysql_escape_string($item);
此時,escape_item 的內(nèi)容是: aaa\'s bbb
PS:在PHP5.3中已經(jīng)棄用該函數(shù),因此僅對該函數(shù)有所了解即可,不推薦使用。
希望本文所述對大家PHP程序設(shè)計有所幫助。