本文整理汇总了PHP中Env::detect方法的典型用法代码示例。如果您正苦于以下问题:PHP Env::detect方法的具体用法?PHP Env::detect怎么用?PHP Env::detect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Env
的用法示例。
在下文中一共展示了Env::detect方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: str_replace
$server_name = '--';
}
$server_name = str_replace(' ', '-', $server_name);
return strtolower(trim($server_name));
}
public static function fast_uuid($suffix_len = 3)
{
//! 计算种子数的开始时间
static $being_timestamp = 1421833799;
$time = explode(' ', microtime());
$id = $time[1] - $being_timestamp . sprintf('%06u', substr($time[0], 2, 6));
if ($suffix_len > 0) {
$id .= substr(sprintf('%010u', mt_rand()), 0, $suffix_len);
}
return $id;
}
public static function identify($x)
{
static $mask = '0123456789abcdefghijklmnopqrstuvwxyz';
$x = sprintf("%u", crc32($x));
$m = '';
while ($x > 0) {
$s = $x % 36;
$m .= $mask[$s];
$x = floor($x / 36);
}
return $m;
}
}
Env::detect();