PHP 将字符串按指定长度插入分隔字符

如:把数字时间格式化成普通时间.$a=152500;$a= substr(chunk_split($a, 2, ':'), 0, -1);echo $a;

你可能感兴趣的:(PHP)