PHP stripslashes 函數語法
string stripslashes( $string )
PHP stripslashes 函數僅有一個參數可以使用,就是 $string,這就是要被處理的原始字串,無論 $string 本身是否有反斜線,都會在經過 stripslashes 處理後返回一個字串。PHP stripslashes 函數的實際操作範例
<?php
$string="It\'s my favorite fruit.";
echo '未使用 stripslashes 函數的結果:'.$string.'<br>';
echo '有使用 stripslashes 函數的結果:'.stripslashes($string).'<br>';
?>
範例的輸出結果$string="It\'s my favorite fruit.";
echo '未使用 stripslashes 函數的結果:'.$string.'<br>';
echo '有使用 stripslashes 函數的結果:'.stripslashes($string).'<br>';
?>
未使用 stripslashes 函數的結果:It\'s my favorite fruit.
有使用 stripslashes 函數的結果:It's my favorite fruit.
我們在範例中準備了一個包含有反斜線的原始字串,然後用 echo 連續輸出兩次,第一次沒有使用 stripslashes 函數,第二次才有使用 stripslashes 函數,從範例的輸出結果可以很清楚的看到差異。有使用 stripslashes 函數的結果:It's my favorite fruit.
延伸閱讀