本文操作环境:windows7系统,PHP7.4版,Dell G3电脑。php 怎么实现日期转中文?php 日期转中文汉字$date_str = $this -> toDateChinese ( date ( 'Ym-d
本文操作环境:windows7系统,PHP7.4版,Dell G3电脑。
php 怎么实现日期转中文?
php 日期转中文汉字
$date_str = $this -> toDateChinese ( date ( 'Ym-d' ));
最终效果:二零一八年十月十七日
private function toDateChinese($date)
{
$date_arr = explode('-', $date);
$arr = [];
foreach ($date_arr as $index => &$val) {
if (mb_strlen($val) == 4) {
$arr[] = preg_split('/(?<!^)(?!$)/u', $val);
} else {
if ($val > 10) {
$v[] = 10;
$v[] = $val % 10;
$arr[] = $v;
unset($v);
} else {
$arr[][] = $val;
}
}
}
$cn = array("一", "二", "三", "四", "五", "六", "七", "八", "九", "十", "零");
$num = array("1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "0");
$str_time = '';
for ($i = 0; $i < count($arr); $i++) {
foreach ($arr[$i] as $index => $item) {
$str_time .= $cn[array_search($item, $num)];
}
if ($i == 0) {
$str_time .= '年';
} elseif ($i == 1) {
$str_time .= '月';
} elseif ($i == 2) {
$str_time .= '日';
}
}
return $str_time;
}
--结束END--
本文标题: php 怎么实现日期转中文
本文链接: https://lsjlt.com/news/896.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0