Quantcast
Viewing all articles
Browse latest Browse all 31

Lies, Damn Lies, and PHP Benchmarks

I need to get something off my chest. First, I’d like you to examine the following code:   class Test { public function output () { return 'Hello, world!'; } }   function test () { return 'Hello, world!'; }   $start = microtime(true); for ($i = 0; $i < 10000000; $i++) { test(); } [...] No related posts.

Viewing all articles
Browse latest Browse all 31

Trending Articles