我有一个这样的 php 代码,我的输出是正确的?日期格式是 (YY/MM/DD)
年月日格式>> 120924(就像2012/09/24)
$yearchk=(int)substr($date,0,4);
$monthchk=(int)substr($date,5,2);
$daychk=(int)substr($date,8,2);
这里有一个子字符串。这个输出在子字符串中是否正确。
My Yearchk output > 12
my monthck output > 09
my daychk output > 24
这个输出正确吗?