stripcslashes()
是一個 PHP 內置函數,用于刪除字符串中的反斜線(\)
<form action="process_input.php" method="post">
<label for="input_text">請輸入文本:</label>
<input type="text" name="input_text" id="input_text">
<input type="submit" value="提交">
</form>
process_input.php
文件中處理用戶輸入:<?php
// 獲取用戶輸入
$input_text = $_POST['input_text'];
// 使用 stripcslashes() 函數移除反斜線
$processed_text = stripcslashes($input_text);
// 輸出處理后的文本
echo "處理后的文本: " . $processed_text;
?>
在這個例子中,當用戶提交表單時,我們會獲取到他們輸入的文本。然后,我們使用 stripcslashes()
函數刪除文本中的反斜線。最后,我們將處理后的文本輸出到頁面上。
需要注意的是,stripcslashes()
函數只會刪除字符串中的反斜線,而不會對其他特殊字符進行處理。如果你需要對用戶輸入進行更全面的過濾和清理,可以考慮使用其他 PHP 函數,如 htmlspecialchars()
、trim()
等。