SommaireTelecharger la documentationChapitre suivantChapitre precedent  

 
Raccourci :  
Dates et heures

checkdate
date
getdate
gettimeofday
gmdate
gmmktime
gmstrftime
localtime
microtime
mktime
strftime
time
strtotime

8.5.13 strtotime
[Notes en ligne] [Exemples]

Transforme un texte anglais en timestamp

int strtotime (string time, int now )
strtotime() essaye de lire une date au format anglais dans la chaîne time, et de la transformer en timestamp UNIX.
Exemple avec strtotime()


<?php
// l'exemple n'est pas traduit, car cela ne fonctionne qu'en anglais
  echo strtotime("now") . "\n";
  echo strtotime("10 September 2000") . "\n";
  echo strtotime("+1 day") . "\n";
  echo strtotime("+1 week") . "\n";
  echo strtotime("+1 week 2 days 4 hours 2 seconds")."\n";
?>
     



Chapitre précédentChapitre suivantAccueil nexen.net