配列とクラスの時間を計測するほとんどのテストは、それらのインスタンス化のみをテストします。実際に彼らと何かを始めたら。
私は、パフォーマンスがはるかに優れていたため、配列のみを使用する「純粋主義者」でした。クラスを使用しないという余分な手間を正当化するために、次のコードを書きました(プログラマーにとっては簡単ですが)
私は結果に非常に驚いたと言っておきましょう!
<?php
$rx = "";
$rt = "";
$rf = "";
$ta = 0; // total array time
$tc = 0; // total class time
// flip these to test different attributes
$test_globals = true;
$test_functions = true;
$test_assignments = true;
$test_reads = true;
// define class
class TestObject
{
public $a;
public $b;
public $c;
public $d;
public $e;
public $f;
public function __construct($a,$b,$c,$d,$e,$f)
{
$this->a = $a;
$this->b = $b;
$this->c = $c;
$this->d = $d;
$this->e = $e;
$this->f = $f;
}
public function setAtoB()
{
$this->a = $this->b;
}
}
// begin test
echo "<br>test reads: " . $test_reads;
echo "<br>test assignments: " . $test_assignments;
echo "<br>test globals: " . $test_globals;
echo "<br>test functions: " . $test_functions;
echo "<br>";
for ($z=0;$z<10;$z++)
{
$starta = microtime(true);
for ($x=0;$x<100000;$x++)
{
$xr = getArray('aaa','bbb','ccccccccc','ddddddddd','eeeeeeee','fffffffffff');
if ($test_assignments)
{
$xr['e'] = "e";
$xr['c'] = "sea biscut";
}
if ($test_reads)
{
$rt = $x['b'];
$rx = $x['f'];
}
if ($test_functions) { setArrAtoB($xr); }
if ($test_globals) { $rf = glb_arr(); }
}
$ta = $ta + (microtime(true)-$starta);
echo "<br/>Array time = " . (microtime(true)-$starta) . "\n\n";
$startc = microtime(true);
for ($x=0;$x<100000;$x++)
{
$xo = new TestObject('aaa','bbb','ccccccccc','ddddddddd','eeeeeeee','fffffffffff');
if ($test_assignments)
{
$xo->e = "e";
$xo->c = "sea biscut";
}
if ($test_reads)
{
$rt = $xo->b;
$rx = $xo->f;
}
if ($test_functions) { $xo->setAtoB(); }
if ($test_globals) { $xf = glb_cls(); }
}
$tc = $tc + (microtime(true)-$startc);
echo "<br>Class time = " . (microtime(true)-$startc) . "\n\n";
echo "<br>";
echo "<br>Total Array time (so far) = " . $ta . "(100,000 iterations) \n\n";
echo "<br>Total Class time (so far) = " . $tc . "(100,000 iterations) \n\n";
echo "<br>";
}
echo "TOTAL TIMES:";
echo "<br>";
echo "<br>Total Array time = " . $ta . "(1,000,000 iterations) \n\n";
echo "<br>Total Class time = " . $tc . "(1,000,000 iterations)\n\n";
// test functions
function getArray($a,$b,$c,$d,$e,$f)
{
$arr = array();
$arr['a'] = $a;
$arr['b'] = $b;
$arr['c'] = $c;
$arr['d'] = $d;
$arr['d'] = $e;
$arr['d'] = $f;
return($arr);
}
//-------------------------------------
function setArrAtoB($r)
{
$r['a'] = $r['b'];
}
//-------------------------------------
function glb_cls()
{
global $xo;
$xo->d = "ddxxdd";
return ($xo->f);
}
//-------------------------------------
function glb_arr()
{
global $xr;
$xr['d'] = "ddxxdd";
return ($xr['f']);
}
//-------------------------------------
?>
テスト読み取り: 1 テスト割り当て: 1 テスト グローバル: 1 テスト機能: 1
配列時間 = 1.58905816078 クラス時間 = 1.11980104446 合計配列時間 (これまで) = 1.58903813362(100,000 回の反復) 合計クラス時間 (これまで) = 1.11979603767(100,000 回の反復)
配列時間 = 1.02581000328 クラス時間 = 1.22492313385 合計配列時間 (これまで) = 2.61484408379(100,000 回の反復) 合計クラス時間 (これまで) = 2.34471416473(100,000 回の反復)
配列時間 = 1.29942297935 クラス時間 = 1.18844485283 合計配列時間 (これまで) = 3.91425895691(100,000 回の反復) 合計クラス時間 (これまで) = 3.5331492424(100,000 回の反復)
配列時間 = 1.28776097298 クラス時間 = 1.02383089066 合計配列時間 (これまで) = 5.2020149231(100,000 回の反復) 合計クラス時間 (これまで) = 4.55697512627(100,000 回の反復)
配列時間 = 1.31235599518 クラス時間 = 1.38880181313 合計配列時間 (これまで) = 6.51436591148(100,000 回の反復) 合計クラス時間 (これまで) = 5.94577097893(100,000 回の反復)
配列時間 = 1.3007349968 クラス時間 = 1.07644081116 合計配列時間 (これまで) = 7.81509685516(100,000 回の反復) 合計クラス時間 (これまで) = 7.02220678329(100,000 回の反復)
配列時間 = 1.12752890587 クラス時間 = 1.07106018066 合計配列時間 (これまで) = 8.94262075424(100,000 回の反復) 合計クラス時間 (これまで) = 8.09326195717(100,000 回の反復)
配列時間 = 1.08890199661 クラス時間 = 1.09139609337 合計配列時間 (これまで) = 10.0315177441(100,000 回の反復) 合計クラス時間 (これまで) = 9.18465089798(100,000 回の反復)
配列時間 = 1.6172170639 クラス時間 = 1.14714384079 合計配列時間 (これまで) = 11.6487307549(100,000 回の反復) 合計クラス時間 (これまで) = 10.3317887783(100,000 回の反復)
配列時間 = 1.53738498688 クラス時間 = 1.28127002716 合計配列時間 (これまで) = 13.1861097813(100,000 回の反復) 合計クラス時間 (これまで) = 11.6130547523(100,000 回の反復)
合計回数: 合計配列時間 = 13.1861097813(1,000,000 回の反復) 合計クラス時間 = 11.6130547523(1,000,000 回の反復)
したがって、どちらの方法でも、違いはごくわずかです。グローバルにアクセスし始めると、クラスが実際に少し速くなることに非常に驚きました。
しかし、私を信用しないでください。自分で実行してください。個人的には、高性能アプリケーションでクラスを使用することについて、完全に罪悪感を感じなくなりました。:D