萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> addcslashes函數與stripcslashes的用法

addcslashes函數與stripcslashes的用法

下面簡單介紹這兩個函數的用法:

string addcslashes(string str,string charlist):第1個參數str為待失物原始字符串,第2個參數charlist說明需要在原始串的哪些字符前加上字符“”。
string stripcslashes(string str):去掉字符串中的“”。

例:
<?php
$sql = "update book set bookname='let's go' where bookid=1";
echo $sql."<br>";
$new_sql = addcslashes($sql,"'");
echo $new_sql."<br>"; //update book set bookname='let's go' where bookid=1
$new_sql_01 = stripcslashes($new_sql);
echo $new_sql_01;  //update book set bookname='let's go' where bookid=1
?>

copyright © 萬盛學電腦網 all rights reserved