php如何實現表單資料驗證

2020-07-16 10:06:32

php如何實現表單資料驗證

首先通過「trim()」函數去除使用者輸入資料中不必要的字元 (如:空格,tab,換行);

範例:

$text   = "ttThese are a few words :) ...  ";
$binary = "x09Example stringx0A";
$hello  = "Hello World";
var_dump($text, $binary, $hello);

print "n";

$trimmed = trim($text);
var_dump($trimmed);

$trimmed = trim($text, " t.");
var_dump($trimmed);

$trimmed = trim($hello, "Hdle");
var_dump($trimmed);

// 清除 $binary 首位的 ASCII 控制字元
// (包括 0-31)
$clean = trim($binary, "x00..x1F");
var_dump($clean);

輸出結果:

string(32) "        These are a few words :) ...  "
string(16) "    Example string
"
string(11) "Hello World"

string(28) "These are a few words :) ..."
string(24) "These are a few words :)"
string(5) "o Wor"
string(14) "Example string"

然後使用「stripslashes()」函數去除使用者輸入資料中的反斜槓;

範例:

$str = "Is your name O'reilly?";

// 輸出: Is your name O'reilly?
echo stripslashes($str);

最後在呼叫「htmlspecialchars()」函數將HTML程式碼進行跳脫。

我們對使用者所有提交的資料都通過 PHP 的 htmlspecialchars() 函數處理。

當我們使用 htmlspecialchars() 函數時,在使用者嘗試提交以下文字域:

<script>location.href('http://www.runoob.com')</script>

該程式碼將不會被執行,因為它會被儲存為HTML跳脫程式碼,如下所示:

&lt;script&gt;location.href('http://www.runoob.com')&lt;/script&gt;

以上程式碼是安全的,可以正常在頁面顯示。

以上就是php如何實現表單資料驗證的詳細內容,更多請關注TW511.COM其它相關文章!