TIME

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
kaily
Forum Newbie
Posts: 12
Joined: Fri Jul 05, 2002 12:17 pm

TIME

Post by kaily »

Is it possible to get the "PHP script's CPU TIME"?
Sorry for my english! :oops:
User avatar
Johnm
Forum Contributor
Posts: 344
Joined: Mon May 13, 2002 12:05 pm
Location: Michigan, USA
Contact:

Post by Johnm »

craginweb
Forum Newbie
Posts: 13
Joined: Fri Jul 05, 2002 12:49 am
Location: FWB Florida

Post 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>.";
Post Reply