[PHP] Re: Time Taken to Process

2001-07-16 Thread Philip Hallstrom
Look at the recent subject entitled echo vs printf. There's code to do exactly what you want. I don't think there's anything built in, but I could be wrong. On Mon, 16 Jul 2001, Phil Spitler wrote: Does anyone know an easy way to tell how long a page takes to run in ms. Maybe some variable

[PHP] RE: Time Taken to Process

2001-07-16 Thread Phil Spitler
yeah, I just saw that, thanks! :) Phil -Original Message- From: Philip Hallstrom [mailto:[EMAIL PROTECTED]] Sent: Monday, July 16, 2001 2:12 PM To: Phil Spitler Cc: [EMAIL PROTECTED] Subject: Re: Time Taken to Process Look at the recent subject entitled echo vs printf. There's

RE: [PHP] RE: Time Taken to Process

2001-07-16 Thread Michael Geier, CDM Systems Admin
try the attached class. $t = new timer; $t-start(); // some code; $t-stop(); $diff = $t-gettime(); echo $diff; -Original Message- From: Phil Spitler [mailto:[EMAIL PROTECTED]] Sent: Monday, July 16, 2001 1:20 PM To: [EMAIL PROTECTED] Subject: [PHP] RE: Time Taken to Process yeah, I