So, for example, how would I, "reuse" that code? The first line of my "function" started with, "ob_start();"
So, does that mean that if I wish to reuse it later, I just type <?php ob_start(); ?> and that's it?
I don't think so. I have to type all 6 lines of code whenever I want to use it:
<?php
ob_start();
$start = microtime();
//do benchmarktest here
$end = microtime();
ob_end_clean();
echo "it took " . ($end-$start) . " seconds";
?>
So, I just don't get the idea of, "reuseability." Or, am I wrong?