📄 global.php
字号:
<?php
/*
[Mcncc] (C)2006 Comsenz Inc.
$Author: 执着 $
$E-Mail: mylove@mcncc.com $
$HomePage: http://www.mcncc.com $
$Blog: http://blog.mcncc.com $
$Date: 2006/4/29 21:35 $
*/
function fileext($filename)
{
return substr(strrchr($filename, '.'), 1);
}
function random($length)
{
$hash = 'M-';
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz';
$max = strlen($chars) - 1;
mt_srand((double)microtime() * 1000000);
for($i = 0; $i < $length; $i++)
{
$hash .= $chars[mt_rand(0, $max)];
}
return $hash;
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -