码迷,mamicode.com
首页 > Web开发 > 详细

PHP 表单验证

时间:2017-01-05 22:43:49      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:ida   内容   span   mit   不能   blog   cte   ring   表单   

1. 验证文本框是否有内容且不能为空

<?php
if (! (filter_has_var(INPUT_POST, ‘flavor‘) && (strlen(filter_input(INPUT_POST, ‘flavor‘)) > 0))) { print ‘You must enter your favorite ice cream flavor.‘; }

 

2. 验证字符串个数

<?php

if (! (filter_has_var(INPUT_POST, ‘color‘) &&
    (strlen(filter_input(INPUT_POST, ‘color‘, FILTER_SANITIZE_STRING)) <= 5))) {
    print ‘Color must be more than 5 characters.‘;
}

 

3. 验证是否是数组

<?php

if (! (filter_has_var(INPUT_POST, ‘choices‘) &&
    filter_input(INPUT_POST, ‘choices‘, FILTER_DEFAULT, FILTER_REQUIRE_ARRAY))) {
    print ‘You must select some choices.‘;
}

 

4. 验证是否是整数

<?php

if (! (filter_has_var(INPUT_POST, ‘age‘) &&
    filter_input(INPUT_POST, ‘age‘, FILTER_VALIDATE_INT))) {
    print "Submitted age is invalid.";
}

 

5. 验证是否是浮点数

<?php

if (! (filter_has_var(INPUT_POST, ‘price‘) &&
    filter_input(INPUT_POST, ‘price‘, FILTER_VALIDATE_FLOAT))) {
    print "Submitted age is invalid.";
}

 

PHP 表单验证

标签:ida   内容   span   mit   不能   blog   cte   ring   表单   

原文地址:http://www.cnblogs.com/ranwuer/p/6254239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!