本文整理汇总了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;
}
示例2: noValue
/**
* Determine whether an argument is optional
*
* @param Argument $argument
*
* @return bool
*/
protected function noValue($argument)
{
return is_null($argument->value());
}
示例3: accepts
public function accepts(Argument $argument)
{
return $argument instanceof StringArgument || $argument instanceof ExactArgument && is_string($argument->value());
}
示例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);
}
示例5: accepts
public function accepts(Argument $argument)
{
return $argument instanceof BooleanArgument || $argument instanceof ExactArgument && is_bool($argument->value());
}
示例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;
}
示例7: accepts
public function accepts(Argument $argument)
{
return $argument instanceof IntegerArgument || $argument instanceof ExactArgument && is_int($argument->value());
}