Okay no help there so how about splitting a string?
I've worked out the calculation but I'm having trouble splitting the result string.
My string returns 7 digits 101023454 - 1 digit day, 2 digit hour, 2 digit minute and 2 digit second.
I need to add a leading 0 for the one digit day if it's not a 2 digit number. Then I need to split the string every 2 digits
here's the code I'm using:
PHP Code:
$now = date(YmdHis);
$down= ($dtmsubend - $now);
$dtmsubend returns date at time like this: 20050115235959. So $down results in 1011521. (year and month match so they disappear. Can I get just padding zeros there?)
Can someone tell me how to split that string please? I don't know how to split strings without it already delimitated. I'm still searching php.net and google but I'm having little luck.
Thanks