Mega Code Archive

 
Categories / Php / Date Time
 

Strftime php

<?php    setlocale(LC_ALL, "it_IT");    $tickets = 2;    $departure_time = 1238837700;    $return_time = 1239457800;    $cost = 1350.99; ?> <?php echo $tickets; ?><br /> <?php echo strftime("%d %B, %Y", $departure_time); ?><br /> <?php echo strftime("%d %B, %Y", $return_time); ?><br />