當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。