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


PHP Assert::isPositiveInteger方法代码示例

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


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

示例1: setSummaryWeight

 public function setSummaryWeight($weight)
 {
     Assert::isPositiveInteger($weight);
     $this->summaryWeight = $weight;
     $this->sorted = false;
     return $this;
 }
开发者ID:justthefish,项目名称:hesper,代码行数:7,代码来源:CyclicAggregateCache.php

示例2: getBytes

 public function getBytes($numberOfBytes)
 {
     Assert::isPositiveInteger($numberOfBytes);
     $bytes = null;
     for ($i = 0; $i < $numberOfBytes; $i += 4) {
         $bytes .= pack('L', mt_rand());
     }
     return substr($bytes, 0, $numberOfBytes);
 }
开发者ID:justthefish,项目名称:hesper,代码行数:9,代码来源:MtRandomSource.php

示例3: encode

 public static function encode($integer)
 {
     Assert::isPositiveInteger($integer, 'Out of range');
     $magicInt = strlen(self::$chars);
     $string = '';
     do {
         $i = $integer % $magicInt;
         $string = self::$chars[$i] . $string;
         $integer = ($integer - $i) / $magicInt;
     } while ($integer > 0);
     return $string;
 }
开发者ID:justthefish,项目名称:hesper,代码行数:12,代码来源:Base62Utils.php

示例4: getAverage

 public static function getAverage(array $list, $size = null)
 {
     if (!$size) {
         $size = count($list);
     }
     Assert::isPositiveInteger($size);
     $tempSum = 0;
     for ($i = 0; $i < $size; $i++) {
         $tempSum += $list[$i];
     }
     return $tempSum / $size;
 }
开发者ID:justthefish,项目名称:hesper,代码行数:12,代码来源:MathUtils.php

示例5: limit

 /**
  * @throws WrongArgumentException
  * @return SelectQuery
  **/
 public function limit($limit = null, $offset = null)
 {
     if ($limit !== null) {
         Assert::isPositiveInteger($limit, 'invalid limit specified');
     }
     if ($offset !== null) {
         Assert::isInteger($offset, 'invalid offset specified');
     }
     $this->limit = $limit;
     $this->offset = $offset;
     return $this;
 }
开发者ID:avid,项目名称:hesper,代码行数:16,代码来源:SelectQuery.php

示例6: setLength

 /**
  * @return CropFilter
  **/
 public function setLength($length)
 {
     Assert::isPositiveInteger($length);
     $this->length = $length;
     return $this;
 }
开发者ID:justthefish,项目名称:hesper,代码行数:9,代码来源:CropFilter.php

示例7: getBytes

 public function getBytes($numberOfBytes)
 {
     Assert::isPositiveInteger($numberOfBytes);
     return fread($this->handle, $numberOfBytes);
 }
开发者ID:justthefish,项目名称:hesper,代码行数:5,代码来源:FileRandomSource.php


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