PHP
downloads | documentation | faq | getting help | mailing lists | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

gmdate> <getdate
Last updated: Fri, 14 Nov 2008

view this page in

gettimeofday

(PHP 4, PHP 5)

gettimeofdayRetourne l'heure actuelle

Description

mixed gettimeofday ([ bool $return_float ] )

C'est une interface à gettimeofday(2). Elle retourne un tableau associatif qui contient les informations retournées par le système.

Liste de paramètres

return_float

Lorsque défini à TRUE, un nombre à virgule flottante est retourné à la place d'un tableau.

Valeurs de retour

Par défaut, un tableau est retourné. Si le paramètre return_float est défini, alors un nombre à virgule flottante sera retourné.

Clés du tableau :

  • "sec" - secondes depuis l'époque Unix
  • "usec" - microsecondes
  • "minuteswest" - minutes de décalage par rapport à Greenwich, vers l'Ouest.
  • "dsttime" - type de correction dst

Historique

Version Description
5.1.0 Le paramètre return_float a été ajouté.

Exemples

Exemple #1 Exemple avec gettimeofday()

<?php
print_r
(gettimeofday());

echo 
gettimeofday(true);
?>

L'exemple ci-dessus va afficher quelque chose de similaire à :

Array
(
   [sec] => 1073504408
   [usec] => 238215
   [minuteswest] => 0
   [dsttime] => 1
)

1073504408.23910



add a note add a note User Contributed Notes
gettimeofday
lucas dot karisny at linuxmail dot org
14-Feb-2005 03:26
A small improvement on getTimer.  Using vsprintf instead of sprintf there is no need to assign the array:

<?php
function utime()
{
  return (float) (
vsprintf('%d.%06d', gettimeofday()));
}
?>

In a test on my machine getTimer took 0.037519 seconds to run through 1000 iterations versus 0.027912 seconds for utime.  In total, utime runs about 25% quicker.  The use is negligible in an actual benchmarking scenario, but this could provide a slightly more accurate estimate.  Of course the time it takes to run the function could always be stored at the start and subtracted from your total value each time it is run.
middleto at pilot dot msu dot edu
13-Aug-1999 04:49
The types of DST correction (from sys/time.h on a Linux system):
 0     Not on DST
 1     USA DST
 2     Austrailian DST
 3     Western European DST
 4     Middle European DST
 5     Eastern European DST
 6     Canada DST
 7     Great Britain and Eire DST
 8     Rumania DST
 9     Turkey
10     Australian DST (with shift in 1986)

gmdate> <getdate
Last updated: Fri, 14 Nov 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites