addslashes() 對特殊字元增加的反斜線
如:addslashes("O'reilly")
取得值為 O\'reilly
stripslashes() 去除由 addslashes() 增加的反斜線
如:
stripslashes ("O\'reilly")
取得值為 O'reilly
PHP 輸入字串轉換 - htmlspecialchars
htmlspecialchars ( string $string [, int $quote_style = ENT_COMPAT [, string $charset [, bool $double_encode = true ]]] )
張貼者:
小Ko
標籤:
PHP,
PHP Function
/
Comments: ( 0 )
PHP 擷取中文字
只要PHP.INI檔裡有使用mbstring的擴充功能,便可使用mb_substr()的函式
張貼者:
小Ko
/ 2009年11月12日 星期四
標籤:
PHP,
PHP Function
/
Comments: ( 0 )