Il fuso orario del mio sistema è US / Eastern , il mio archivio predefinito è US / Central e il database è UTC . A che ora verrà doStuff
chiamato il seguente metodo?
<mymodule_do_stuff>
<schedule><cron_expr>15 0 * * *</cron_expr></schedule>
<run>
<model>mymodule/observer::doStuff</model>
</run>
</mymodule_do_stuff>
Aggiornamento: ho eseguito questo script.
echo date('r'), PHP_EOL;
require_once 'app/Mage.php';
Mage::app();
echo date('r'), PHP_EOL;
e ottenuto
Mon, 30 Dec 2013 18:01:33 -0600
Tue, 31 Dec 2013 00:01:34 +0000
Quindi sembra che UTC sia quello che dovrei usare.