本文整理汇总了PHP中kernel::__host_mirrors_count方法的典型用法代码示例。如果您正苦于以下问题:PHP kernel::__host_mirrors_count方法的具体用法?PHP kernel::__host_mirrors_count怎么用?PHP kernel::__host_mirrors_count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kernel
的用法示例。
在下文中一共展示了kernel::__host_mirrors_count方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_host_mirror_img
public static function get_host_mirror_img()
{
$host_mirrors = (array) config::get('storager.host_mirrors_img', array());
if (!empty($host_mirrors)) {
if (!isset(self::$__host_mirrors)) {
self::$__host_mirrors = $host_mirrors;
self::$__host_mirrors_count = count($host_mirrors) - 1;
}
return self::$__host_mirrors[rand(0, self::$__host_mirrors_count)];
}
return kernel::base_url(1);
}
示例2: constant
static function get_resource_host_url($local_flag = false)
{
if (defined('HOST_MIRRORS') && !$local_flag) {
if (!isset(self::$__host_mirrors)) {
$host_mirrors = preg_split('/[,\\s]+/', constant('HOST_MIRRORS'));
if (is_array($host_mirrors) && isset($host_mirrors[0])) {
self::$__host_mirrors =& $host_mirrors;
self::$__host_mirrors_count = count($host_mirrors) - 1;
}
}
return self::$__host_mirrors[rand(0, self::$__host_mirrors_count)];
}
return kernel::base_url(1);
}