trim、stripslashes、htmlspecialchars函數

來源:互聯網
上載者:User
通過 PHP 驗證表單資料

我們要做的第一件事是通過 PHP 的 htmlspecialchars() 函數傳遞所有變數。

在我們使用 htmlspecialchars() 函數後,如果使用者試圖在文字欄位中提交以下內容:

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

- 代碼不會執行,因為會被儲存為轉義代碼,就像這樣:

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

現在這條代碼顯示在頁面上或 e-mail 中是安全的。

在使用者提交該表單時,我們還要做兩件事:

(通過 PHP trim() 函數)去除使用者輸入資料中不必要的字元(多餘的空格、定位字元、換行)

(通過 PHP stripslashes() 函數)刪除使用者輸入資料中的反斜線(\)

接下來我們建立一個檢查函數(相比一遍遍地寫代碼,這樣效率更好)。

我們把函數命名為 test_input()。

現在,我們能夠通過 test_input() 函數檢查每個 $_POST 變數,指令碼是這樣的:

執行個體

<?php// 定義變數並設定為空白值$name = $email = $gender = $comment = $website = "";if ($_SERVER["REQUEST_METHOD"] == "POST") {  $name = test_input($_POST["name"]);  $email = test_input($_POST["email"]);  $website = test_input($_POST["website"]);  $comment = test_input($_POST["comment"]);  $gender = test_input($_POST["gender"]);}function test_input($data) {  $data = trim($data);  $data = stripslashes($data);  $data = htmlspecialchars($data);  return $data;}?>
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.