PHP 表单验证
Posted ranwuer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 表单验证相关的知识,希望对你有一定的参考价值。
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 表单验证的主要内容,如果未能解决你的问题,请参考以下文章