File: /home/www/fotospedroj/application/helpers/tiempo_helper.php
<?php
function timestamp_now(){
$CI = &get_instance();
$fecha_ahora = new DateTime("now", new DateTimeZone('Europe/Madrid'));
$timestamp_ahora = $fecha_ahora->format('U');// + $fecha_ahora->format('Z');
// $horario_verano = $fecha_ahora->format('I');
// if ($horario_verano == 1){
// $timestamp_ahora+=3600;
// }
return $timestamp_ahora;
}
function unix_to_mysql($unix_timestamp){
$mysql_timestamp = date('Y-m-d H:i:s',$unix_timestamp);
return $mysql_timestamp;
}
?>