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


PHP PhutilTypeSpec::getTypeOf方法代码示例

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


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

示例1: testGetTypeOf

 public function testGetTypeOf()
 {
     $map = array('int' => 1, 'string' => 'asdf', 'float' => 1.5, 'bool' => true, 'null' => null, 'map<wild, wild>' => array(), 'list<string>' => array('a', 'b'), 'list<int>' => array(1, 2, 3), 'map<string, int>' => array('x' => 3), 'map<int, list<string>>' => array(1 => array('x', 'y')), 'stdClass' => new stdClass(), 'list<Exception>' => array(new Exception(), new LogicException(), new RuntimeException()), 'map<string, stdClass>' => array('x' => new stdClass()));
     foreach ($map as $expect => $input) {
         $this->assertEqual($expect, PhutilTypeSpec::getTypeOf($input), print_r($input, true));
         PhutilTypeSpec::newFromString($expect)->check($input);
     }
 }
开发者ID:fengshao0907,项目名称:libphutil,代码行数:8,代码来源:PhutilTypeSpecTestCase.php

示例2: __construct

 public function __construct(PhutilTypeSpec $type, $value, $name = null, $err = null)
 {
     if ($name !== null) {
         $invalid = pht("Parameter '%s' has invalid type.", $name);
     } else {
         $invalid = pht("Parameter has invalid type.");
     }
     if ($type->getType() == 'regex') {
         if (is_string($value)) {
             $message = pht("Expected a regular expression, but '%s' is not valid: %s", $value, $err);
         } else {
             $message = pht("Expected a regular expression, but value is not valid: %s", $err);
         }
     } else {
         $message = pht("Expected type '%s', got type '%s'.", $type->toString(), PhutilTypeSpec::getTypeOf($value));
     }
     parent::__construct($invalid . ' ' . $message);
 }
开发者ID:jasteele12,项目名称:prb_lint_tests,代码行数:18,代码来源:PhutilTypeCheckException.php


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