spacemonkey
spacemonkey

Reputation: 20004

Measuring page load time in the footer

In my Zend Framework app, I have following code:

index.php

$app_started_time = time();

layout.phtml

$elapsed = time() - $app_started_time;

Does users internet speed and geo location have an impact of $elapsed value?

Thanks!

Upvotes: 0

Views: 434

Answers (1)

Mr Coder
Mr Coder

Reputation: 8186

No Because what you are measuring above is server processing elapsed time .Its independent of user .

Upvotes: 1

Related Questions