本文整理汇总了PHP中Toolbox::register方法的典型用法代码示例。如果您正苦于以下问题:PHP Toolbox::register方法的具体用法?PHP Toolbox::register怎么用?PHP Toolbox::register使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Toolbox
的用法示例。
在下文中一共展示了Toolbox::register方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elseif
} elseif (strpos($regex, 'Windows XP')) {
return $regex = "Windows XP";
} elseif (strpos($regex, 'Macintosh|Mac OS X')) {
return $regex = "Mac OS X";
} elseif (strpos($regex, 'Mac_PowerPC')) {
return $regex = "Mac OS 9";
} elseif (strpos($regex, 'Linux')) {
return $regex = "Linux";
} elseif (strpos($regex, 'Ubuntu Linux')) {
return $regex = "Linux Ubuntu";
} elseif (strpos($regex, 'iPhone')) {
return $regex = "iPhone";
} elseif (strpos($regex, 'iPod')) {
return $regex = "iPod";
} elseif (strpos($regex, 'iPad')) {
return $regex = "iPad";
} elseif (strpos($regex, 'Android')) {
return $regex = "Android";
} elseif (strpos($regex, 'BlackBerry')) {
return $regex = "BlackBerry";
} elseif (strpos($regex, 'WebOS')) {
return $regex = "Mobile";
} else {
return $regex = "Unknown / unsupported operating system";
}
}
}
// Build Environment helper
\Toolbox::register('Environment', function () {
return new Environment();
});
示例2: array
}
if (is_numeric($input[$field]) && is_numeric($param) && $input[$field] >= $param) {
return;
}
return array('field' => $field, 'value' => $input[$field], 'rule' => __FUNCTION__, 'param' => $param);
}
/**
* Trims whitespace only when the value is a scalar
*
* @param mixed $value
* @return mixed
*/
private function trimScalar($value)
{
if (is_scalar($value)) {
$value = trim($value);
}
return $value;
}
}
// EOC
Validate::add_validator("matches", function ($field, $input, $param = NULL) {
if ($field) {
return;
}
return array('field' => $field, 'value' => $input[$field], 'rule' => __FUNCTION__, 'param' => $param);
});
// Build Validation helper
\Toolbox::register('Validate', function () {
return new Validate();
});