[ Index ]
 

Code source de phpMyVisites 2.3

Accédez au Source d'autres logiciels libres

Classes | Fonctions | Variables | Constantes | Tables

title

Body

[fermer]

/core/include/smarty_plugins/ -> modifier.time.php (source)

   1  <?php
   2  function smarty_modifier_time($ts)
   3  {
   4      $h = floor($ts / 3600);
   5      $m = floor( ($ts  - $h*3600) / 60 );
   6      $s = floor( ($ts - $h*3600 - $m * 60) );
   7      return setToLength($h, 2) . ":" . setToLength($m,2) . ":" . setToLength($s,2);
   8  }
   9  ?>


Généré le : Mon Nov 26 14:10:01 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics