addslashes() 函式返回在預定義字元之前新增反斜槓的字串。
預定義字元是:單引號(』),雙引號(」),反斜槓(\),null
例如
<?php
$str = "who's bill gates?";
echo
$str . " this is not safe in a database query.
";echo addslashes($str) . " this is safe in a database query.";
?>
輸出
who's bill gates? this is
not safe in a database query.
who\'s bill gates? this is safe in a database query.
addcslashes()函式:在指定字串前加反斜槓
<?php
$str = "welcome to shanghai!";
echo
$str."
";echo addcslashes($str,'a')."
";echo addcslashes($str,'s')."
";?>
輸出
welcome to shanghai!
welcome to sh\angh\ai!
welcome to \shanghai!
php 採集常用函式 PHP常用採集函式
獲取所有鏈結內容和位址function getallurl code 獲取所有的位址 function getimgsrc code else fnum if fnum fnum 0 return fnum 去除html標記 function text2html txt isu r n txt re...
php 一些常用函式
var export 輸出或返回乙個變數的字串表示 此函式返回關於傳遞給該函式的變數的結構資訊,它和 var dump 類似,不同的是其返回的表示是合法的 php 您可以通過將函式的第二個引數設定為true,從而返回變數的表示。a var export array,true 將變數列印出來包括型別記...
常用PHP函式
這是一些使用頻率比較高的函式,有的來自別人的程式.1.產生隨機字串函式 function random length return hash 2.擷取一定長度的字串 注 該函式對gb2312使用有效 function wordscut string,length sss 0 for i 0 i le...