php 验证所传参数为必填的时候的验证逻辑
Posted 从什么时候开始努力都不会晚
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 验证所传参数为必填的时候的验证逻辑相关的知识,希望对你有一定的参考价值。
此段代码摘自lumen框架: xx/vendor/illuminate/validation/Validator.php
/** * Validate that a required attribute exists. * * @param string $attribute * @param mixed $value * @return bool */ protected function validateRequired($attribute, $value) { if (is_null($value)) { return false; } elseif (is_string($value) && trim($value) === ‘‘) { return false; } elseif ((is_array($value) || $value instanceof Countable) && count($value) < 1) { return false; } elseif ($value instanceof File) { return (string) $value->getPath() != ‘‘; } return true; }
以上是关于php 验证所传参数为必填的时候的验证逻辑的主要内容,如果未能解决你的问题,请参考以下文章