在字元"W" 前面加上反斜線:
<?php $str = addcslashes("Hello World!","W");echo($str); ?>addcslashes() 函數傳回在指定的字元前面加上反斜線的字串。
註解: addcslashes() 函數是區分大小寫的。
註:在0(NULL)、r(回車)、n(換行)、t(換頁)、f(製表符)和v(垂直製表符)套用addcslashes() 時要小心。在PHP 中, 、r、n、t、f 和v 是預先定義的轉義序列。
addcslashes( string,characters )
參數 | 描述 |
---|---|
string | 必需。規定要轉義的字串。 |
characters | 必需。規定要轉義的字元或字元範圍。 |
傳回值: | 傳回已轉義的字串。 |
---|---|
PHP 版本: | 4+ |
在字串中的特定字元中加入反斜線:
<?php$str = "Welcome to my humble Homepage!";echo $str."<br>";echo addcslashes($str,'m')."<br>";echo addcslashes($str,'H ')."<br>";?>在字串中的一個範圍內的字元中加入反斜線:
<?php$str = "Welcome to my humble Homepage!";echo $str."<br>";echo addcslashes($str,'A..Z')."<br>";echo addcslashes($str ,'a..z')."<br>";echo addcslashes($str,'a..g');?>