PHP 8.5.0 Alpha 1 available for testing

Voting

: min(five, five)?
(Example: nine)

The Note You're Voting On

Nitrogen
16 years ago
I use this function to produce a small speed test in my pages since I run my website from my home computers.

<?php
ob_start
();
$StartTime=microtime(1);
?>
.. webpage data goes here ..

<?php
// footer?
printf("%s seconds to produce (%skb/sec)",
microtime(1)-$StartTime,
Round((ob_get_length()/(microtime(1)-$StartTime))/1024));

ob_end_flush();
?>

Note: don't forget the "speed" depends on how quick the content is actually generated and not on the speed the data is sent to the client..
However it would be good to see such function to get the real speed. :)

Nitrogen.

<< Back to user notes page

To Top