validation数据验证库.zip

时间:2022-07-31 04:28:26
【文件属性】:

文件名称:validation数据验证库.zip

文件大小:33KB

文件格式:ZIP

更新时间:2022-07-31 04:28:26

类库下载-validation数据验证库

<?php namespace Cake\Validation; use ReflectionClass; class RulesProvider {     /**      * The class/object to proxy.      *      * @var mixed      */     protected $_class;     /**      * The proxied class' reflection      *      * @var \ReflectionClass      */     protected $_reflection;     /**      * Constructor, sets the default class to use for calling methods      *      * @param string $class the default class to proxy      */     public function __construct($class = '\Cake\Validation\Validation')     {         $this->_class = $class;         $this->_reflection = new ReflectionClass($class);     }我们知道,在使用语言的过程中,肯定会关注在实际开发过程中的安全性问题。那么,今天我们就来为大家介绍保证PHP安全的首要措施验证类库,数据的验证是您可能采用的最重要的习惯。而在提及输入时,十分简单:不要相信用户。在保证PHP安全而进行验证数据时,记住设计并验证应用程序允许使用的值通常比防止所有未知值更容易。


【文件预览】:
validation数据验证库
----composer.json(997B)
----Validation.php(52KB)
----php中文网下载站.url(114B)
----ValidatableInterface.php(1KB)
----ValidatorAwareTrait.php(9KB)
----ValidatorAwareInterface.php(2KB)
----RulesProvider.php(2KB)
----php中文网免费下载站.txt(219B)
----Validator.php(68KB)
----ValidationSet.php(5KB)
----README.md(1KB)
----ValidationRule.php(6KB)
----LICENSE.txt(1KB)

网友评论