我想拆分一個很長的數字,我在PHP中使用了多個字符串。 我得到這個:PHP:如何將一個數字拆分爲多個字符串
<?php
$this = 020420151230;
?>
我想要得到這樣的結果:
//output:
$this['day'] = 02;
$this['month'] = 04;
$this['year'] = 2015;
$this['hour'] = 12;
$this['minute'] = 30;
能否請你幫和我應該使用的建議,其功能呢?
那你試試?聽起來很簡單,不是嗎? – 2015-04-02 09:37:20
http://php.net/substr – Steve 2015-04-02 09:39:37