PHP--輸入驗證

BtWangZhi發表於2017-10-19

1
輸入端

<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
    <form action="controller.php" method="get">
        名字: <input type="text" name="name"> 
        年齡: <input type="text" name="age">
        郵箱: <input type="text" name="email"> 
        <input type="submit" value="提交">
    </form>
</body>
</html>

驗證端:

<?php
// 定義個欄位規則
$filters = array (
        "name" => array (
                "filter" => FILTER_SANITIZE_STRING 
        ),
        "age" => array (
                "filter" => FILTER_VALIDATE_INT,
                "options" => array (
                        "min_range" => 1,
                        "max_range" => 120 
                ) 
        ),
        "email" => FILTER_VALIDATE_EMAIL 
);
$result = filter_input_array ( INPUT_GET, $filters );
// 結果判斷
if (! $result ["name"]) {
    echo "姓名輸入錯誤";
} else if (! $result ["email"]) {
    echo "郵箱輸入錯誤";
} else if (! $result ["age"]) {
    echo "年齡輸入錯誤";
} else {
    echo "輸入錯誤";
}
?>

部分摘自菜鳥教程。
未完待續。。。

相關文章