本文整理匯總了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());
}