首页 > Web开发 > 详细

PHP 表单验证

时间:2017-01-05 22:42:44      阅读:227      评论:0      收藏:0      [点我收藏+]

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 表单验证

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!