php怎样将数字拆分独立数字

mac2022-06-30  86

$str = '1230'; $chars = preg_split('//', $str, -1, PREG_SPLIT_NO_EMPTY); print_r($chars);
最新回复(0)