Page 1 of 1

TIME

Posted: Fri Jul 05, 2002 12:22 pm
by kaily
Is it possible to get the "PHP script's CPU TIME"?
Sorry for my english! :oops:

Posted: Fri Jul 05, 2002 12:39 pm
by Johnm

Posted: Fri Jul 05, 2002 12:52 pm
by craginweb
Here is an example of code I use for the time and date.

Code: Select all

$getdate = date( "l dS of F Y" ); 
    $gettime = date( "h:i:s A" ); 
    PRINT "The Date Is <b>$getdate</b>."; 
    echo "<br /><br />"; 
    PRINT "The Time Is <b>$gettime</b>.";