Here's an example of the datetime strings I am working with:
Tue May 15 10:14:30 +0000 2012
Here is my attempt to add an hour onto it:
$time = 'Tue May 15 10:14:30 +0000 2012';
$dt = new DateTime($time);
$dt->add(new DateInterval('P1h'));
But the second line gives the error that it couldn't be converted.
Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…