Skip to content

Instantly share code, notes, and snippets.

@danabrey
Last active March 1, 2018 12:47
Show Gist options
  • Save danabrey/7ccf4c13f3f1a18ced573d3026b5286f to your computer and use it in GitHub Desktop.
Save danabrey/7ccf4c13f3f1a18ced573d3026b5286f to your computer and use it in GitHub Desktop.
<?php
class Car {
private $color = "red";
public function getColor()
{
return $this->color;
}
}
$start_time = microtime(TRUE);
$car = new Car();
for ($i = 0; $i < 1000000; $i++) {
$myvar = $car->getColor();
}
$end_time = microtime(TRUE);
var_dump($end_time - $start_time);
// 1.0200719833374
// 1.0952899456024
// 1.2565279006958
// 1.0695819854736
// 1.2145531177521
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment