本文整理匯總了PHP中Option::from方法的典型用法代碼示例。如果您正苦於以下問題:PHP Option::from方法的具體用法?PHP Option::from怎麽用?PHP Option::from使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Option
的用法示例。
在下文中一共展示了Option::from方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: flatMapBy
/**
* {@inheritDoc}
*/
public function flatMapBy($mapper)
{
Contracts::ensureCallable($mapper);
// Grecefully handle not Option return value.
if (!($option = call_user_func($mapper, $this->data)) instanceof Option) {
$option = Option::from($option);
}
return $option;
}
示例2: getMethodFrom
/**
* @param object|string $value Object or class name.
* @param string $methodName
*
* @return \Colada\Option
*/
private static function getMethodFrom($value, $methodName)
{
if (is_object($value) && !$value instanceof \ReflectionClass) {
$class = new \ReflectionObject($value);
} elseif (is_string($value)) {
$class = new \ReflectionClass($value);
}
$method = null;
if ($class->hasMethod($methodName)) {
$method = $class->getMethod($methodName);
}
return Option::from($method);
}
示例3: toOption
/**
* Converts this result to an option
*
* If this is a success, it returns an Option::just
* If this is an error, it returns Option::none
*/
public function toOption()
{
return Option::from($this->value);
}