Skip to content

Instantly share code, notes, and snippets.

View nishimura1981's full-sized avatar

hiroyukinishimura nishimura1981

View GitHub Profile
@nishimura1981
nishimura1981 / speed_test
Last active December 18, 2015 18:59
PHP Function Speed Test
<?php
ini_set('memory_limit' ,'-1');
class SpeedTest
{
private $loop;
public function SpeedTest($num) {
$this->loop = range(0, $num);
}