User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the PHP section within the Web Development category of DaniWeb, a massive community of 374,571 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,649 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our PHP advertiser: Lunarpages PHP Web Hosting
Oct 12th, 2004
Views: 4,685
Well like my previous snippet but completing the collection i suppose, this snippet counts how long it takes to parse the page and displays it somewhere..
php Syntax | 4 stars
  1. // First you need to include the functions in the header or something
  2.  
  3. // timer start function
  4. function startTimer() {
  5. global $starttime;
  6. $mtime = microtime ();
  7. $mtime = explode (' ', $mtime);
  8. $mtime = $mtime[1] + $mtime[0];
  9. $starttime = $mtime;
  10. }
  11.  
  12. // timer end function
  13. function endTimer() {
  14. global $starttime;
  15. $mtime = microtime ();
  16. $mtime = explode (' ', $mtime);
  17. $mtime = $mtime[1] + $mtime[0];
  18. $endtime = $mtime;
  19. $totaltime = round (($endtime - $starttime), 5);
  20. return $totaltime;
  21. }
  22.  
  23. // now at the start of your header usually immediatly after these
  24. // functions. start the timer with...
  25. startTimer();
  26.  
  27. // all you do now is output it on your page somewhere using this
  28. Page Generation time: <?=endTimer();?>
Comments (Newest First)
mohamed badr | Newbie Poster | Mar 15th, 2008
i think it's not accurate
Troy | Posting Whiz | May 23rd, 2006
Useful, clean, and simple. I like it.
Post Comment

Only community members can submit or comment on code snippets. You must register or log in to contribute.

DaniWeb Marketplace (Sponsored Links)
All times are GMT -4. The time now is 5:46 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC