I'm a little confused with the outcome of these strtotime functions, I would expect them to be the same but get completely different results:
echo strtotime(date('Y-m-d h:i:s',time()).' +1 hour')."\n";
echo strtotime('now +1 hour')."\n";
results in:
date('Y-m-d h:i:s',time(): 1340117163
now +1 hour: 1340160363
Am I doing something wrong?