字节转换成’ KB’, ‘ MB’, ‘ GB’, ‘ TB’等合适的单位
function format_bytes($size)
{
$units = [' B', ' KB', ' MB', ' GB', ' TB'];
for ($i = 0; $size >= 1024 && $i < 4; $i++) {
$size /= 1024;
}
return round($size, 2) . $units[$i];
}
根据时间返回星期几?
function get_week_day(int $time)
{
$week_array = array("日", "一", "二", "三", "四", "五", "六");
$week = date("w", $time);
return "星期" . $week_array[$week];
}
判断是否是正确的货币类型
/**
* 检查货币类型
*
* @param mixed $value 检查的对象值
* @param integer $decimal 小数点最多几位
* @return boolean
*/
function check_currency($value, int $decimal = 2): bool
{
if (!is_numeric($value)) {
return false;
}
if (is_int($value)) {
return true;
}
$int_decimal = explode('.', $value);
switch (count($int_decimal)) {
case 1:
return is_numeric($int_decimal[0]);
break;
case 2:
return is_numeric($int_decimal[0]) && is_numeric($int_decimal[1]) && strlen($int_decimal[1]) <= $decimal;
break;
default:
return false;
}
return false;
}
RoveCoder版权所有,转载请注明