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


PHP Validator::boolType方法代码示例

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


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

示例1: binary

 public function binary($blBinary)
 {
     if (!Validator::boolType()->validate($blBinary)) {
         $this->objLogger->addError('Binary must be TRUE or FALSE');
         throw new SMSMessageException('Binary must be TRUE or FALSE');
     }
     $this->blBinary = (bool) $blBinary;
     $this->objLogger->addDebug('Binary has been set to ' . $blBinary);
     return $this;
 }
开发者ID:saleemepoch,项目名称:txtnation,代码行数:10,代码来源:SMSMessage.php

示例2: validate

 private function validate()
 {
     try {
         $validator = v::attribute('merchantAlias', v::stringType()->alnum('_')->noWhitespace()->length(1, 30))->attribute('macKey', v::stringType()->length(1))->attribute('transactionCode', v::stringType()->alnum()->noWhitespace()->length(1, 30))->attribute('requestType', v::oneOf(v::stringType()->equals(self::REQUEST_TYPE_FIRST_ATTEMPT), v::stringType()->equals(self::REQUEST_TYPE_RETRY_ATTEMPT)))->attribute('operationId', v::stringType()->digit()->noWhitespace()->length(1, 10))->attribute('operationType', v::oneOf(v::stringType()->equals(self::OPERATION_TYPE_CAPTURE), v::stringType()->equals(self::OPERATION_TYPE_VOID)))->attribute('originalAmount', v::stringType()->digit()->noWhitespace()->length(9, 9))->attribute('currency', v::stringType()->alnum()->noWhitespace()->length(3, 3))->attribute('authCode', v::stringType()->alnum()->noWhitespace()->length(1, 10))->attribute('operationAmount', v::stringType()->digit()->noWhitespace()->length(9, 9))->attribute('user', v::optional(v::stringType()->alnum()->length(0, 20)))->attribute('isTest', v::boolType());
         $validator->assert($this);
     } catch (NestedValidationException $e) {
         throw new ValidationException($e->getFullMessage());
     }
 }
开发者ID:webgriffe,项目名称:lib-quipago,代码行数:9,代码来源:EcRequest.php


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