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


PHP Argument::value方法代码示例

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


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

示例1: accepts

 public function accepts(Argument $argument)
 {
     if (!$argument instanceof ExactArgument) {
         return false;
     }
     $value = $argument->value();
     if (is_array($value)) {
         return in_array($this->needle, $value);
     } else {
         if (is_string($value)) {
             return strpos($value, $this->needle) !== false;
         } else {
             if (is_object($value)) {
                 foreach ($value as $item) {
                     if ($item == $this->needle) {
                         return true;
                     }
                 }
             }
         }
     }
     return false;
 }
开发者ID:rtens,项目名称:mockster,代码行数:23,代码来源:ContainingArgument.php

示例2: noValue

 /**
  * Determine whether an argument is optional
  *
  * @param Argument $argument
  *
  * @return bool
  */
 protected function noValue($argument)
 {
     return is_null($argument->value());
 }
开发者ID:rtgnx,项目名称:climate,代码行数:11,代码来源:Filter.php

示例3: accepts

 public function accepts(Argument $argument)
 {
     return $argument instanceof StringArgument || $argument instanceof ExactArgument && is_string($argument->value());
 }
开发者ID:rtens,项目名称:mockster3,代码行数:4,代码来源:StringArgument.php

示例4: accepts

 public function accepts(Argument $argument)
 {
     return $argument instanceof ExactArgument && is_a($argument->value(), $this->class) || $argument instanceof ObjectArgument && $argument->class == $this->class || $argument instanceof ObjectArgument && is_subclass_of($argument->class, $this->class);
 }
开发者ID:rtens,项目名称:mockster,代码行数:4,代码来源:ObjectArgument.php

示例5: accepts

 public function accepts(Argument $argument)
 {
     return $argument instanceof BooleanArgument || $argument instanceof ExactArgument && is_bool($argument->value());
 }
开发者ID:rtens,项目名称:mockster3,代码行数:4,代码来源:BooleanArgument.php

示例6: accepts

 public function accepts(Argument $argument)
 {
     return $argument instanceof RegularExpressionArgument && $argument->expression == $this->expression || $argument instanceof ExactArgument && preg_match($this->expression, $argument->value()) === 1;
 }
开发者ID:rtens,项目名称:mockster3,代码行数:4,代码来源:RegularExpressionArgument.php

示例7: accepts

 public function accepts(Argument $argument)
 {
     return $argument instanceof IntegerArgument || $argument instanceof ExactArgument && is_int($argument->value());
 }
开发者ID:rtens,项目名称:mockster,代码行数:4,代码来源:IntegerArgument.php


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