当前位置: 首页>>代码示例>>PHP>>正文


PHP Input::isValid方法代码示例

本文整理汇总了PHP中Zend\InputFilter\Input::isValid方法的典型用法代码示例。如果您正苦于以下问题:PHP Input::isValid方法的具体用法?PHP Input::isValid怎么用?PHP Input::isValid使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend\InputFilter\Input的用法示例。


在下文中一共展示了Input::isValid方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: isValid

 public function isValid($context = null)
 {
     $result = parent::isValid($context);
     if ($result) {
         $filter = $this->getFilterChain();
         $filter->attachByName('PasswordCrypt');
     }
     return $result;
 }
开发者ID:mhilker,项目名称:usermanager,代码行数:9,代码来源:PasswordInput.php

示例2: testFallbackValue

 /**
  * @dataProvider dataFallbackValue
  */
 public function testFallbackValue($fallbackValue)
 {
     $this->input->setFallbackValue($fallbackValue);
     $validator = new Validator\Date();
     $this->input->getValidatorChain()->attach($validator);
     $this->input->setValue('123');
     // not a date
     $this->assertTrue($this->input->isValid());
     $this->assertEmpty($this->input->getMessages());
     $this->assertSame($fallbackValue, $this->input->getValue());
 }
开发者ID:pnaq57,项目名称:zf2demo,代码行数:14,代码来源:InputTest.php

示例3: isValid

 public function isValid($context = null)
 {
     if (null !== $this->ignoreValue && isset($context[$this->getName()]) && $context[$this->getName()] == $this->ignoreValue) {
         $this->value = null;
         return true;
     }
     $result = parent::isValid($context);
     if (!$result) {
         $this->value = $this->defaultValue;
     }
     return $result;
 }
开发者ID:t4web,项目名称:base,代码行数:12,代码来源:Element.php

示例4: testDoNotInjectNotEmptyValidatorIfAnywhereInChain

 public function testDoNotInjectNotEmptyValidatorIfAnywhereInChain()
 {
     $this->assertTrue($this->input->isRequired());
     $this->input->setValue('');
     $notEmptyMock = $this->getMock('Zend\\Validator\\NotEmpty', array('isValid'));
     $notEmptyMock->expects($this->exactly(1))->method('isValid')->will($this->returnValue(false));
     $validatorChain = $this->input->getValidatorChain();
     $validatorChain->attach(new Validator\Digits());
     $validatorChain->attach($notEmptyMock);
     $this->assertFalse($this->input->isValid());
     $validators = $validatorChain->getValidators();
     $this->assertEquals(2, count($validators));
     $this->assertEquals($notEmptyMock, $validators[1]['instance']);
 }
开发者ID:rajanlamic,项目名称:IntTest,代码行数:14,代码来源:InputTest.php

示例5: testRequiredNotEmptyValidatorNotAddedWhenOneExists

 public function testRequiredNotEmptyValidatorNotAddedWhenOneExists()
 {
     $input = new Input('foo');
     $this->assertTrue($input->isRequired());
     $input->setValue('');
     $notEmptyMock = $this->getMock('Zend\\Validator\\NotEmpty', array('isValid'));
     $notEmptyMock->expects($this->exactly(1))->method('isValid')->will($this->returnValue(false));
     $validatorChain = $input->getValidatorChain();
     $validatorChain->prependValidator($notEmptyMock);
     $this->assertFalse($input->isValid());
     $validators = $validatorChain->getValidators();
     $this->assertEquals(1, count($validators));
     $this->assertEquals($notEmptyMock, $validators[0]['instance']);
 }
开发者ID:haoyanfei,项目名称:zf2,代码行数:14,代码来源:InputTest.php

示例6: isValid

 /**
  * @param null $context
  * @return bool
  */
 public function isValid($context = null)
 {
     $this->isValid = parent::isValid($context);
     return $this->isValid;
 }
开发者ID:spalax,项目名称:zf2-file-uploader,代码行数:9,代码来源:FromList.php


注:本文中的Zend\InputFilter\Input::isValid方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。