मैं यह देखने के लिए उत्सुक था कि वास्तव में कौन सा तेज था इसलिए मैंने उन कार्यों को बेंचमार्क करने के लिए एक सरल स्क्रिप्ट बनाई।
<?php
function benchmark($name, $iterations, $action){
$time=microtime(true);
for($i=0;$i<=$iterations;++$i){
$action();
}
echo $name . ' ' . round(microtime(true)-$time, 6) . "\n";
}
$iterations = 1000000;
$x = array();
$y = range(0, 10000000);
$actions = array(
"Empty empty()" => function() use($x){
empty($x);
},
"Empty count()" => function() use($x){
count($x);
},
"Full empty()" => function() use($y){
empty($y);
},
"Full count()" => function() use($y){
count($y);
},
############
"IF empty empty()" => function() use($x){
if(empty($x)){ $t=1; }
},
"IF empty count()" => function() use($x){
if(count($x)){ $t=1; }
},
"IF full empty()" => function() use($y){
if(empty($y)){ $t=1; }
},
"IF full count()" => function() use($y){
if(count($y)){ $t=1; }
},
############
"OR empty empty()" => function() use($x){
empty($x) OR $t=1;
},
"OR empty count()" => function() use($x){
count($x) OR $t=1;
},
"OR full empty()" => function() use($y){
empty($y) OR $t=1;
},
"OR full count()" => function() use($y){
count($y) OR $t=1;
},
############
"IF/ELSE empty empty()" => function() use($x){
if(empty($x)){ $t=1; } else { $t=2; }
},
"IF/ELSE empty count()" => function() use($x){
if(count($x)){ $t=1; } else { $t=2; }
},
"IF/ELSE full empty()" => function() use($y){
if(empty($y)){ $t=1; } else { $t=2; }
},
"IF/ELSE full count()" => function() use($y){
if(count($y)){ $t=1; } else { $t=2; }
},
############
"( ? : ) empty empty()" => function() use($x){
$t = (empty($x) ? 1 : 2);
},
"( ? : ) empty count()" => function() use($x){
$t = (count($x) ? 1 : 2);
},
"( ? : ) full empty()" => function() use($y){
$t = (empty($y) ? 1 : 2);
},
"( ? : ) full count()" => function() use($y){
$t = (count($y) ? 1 : 2);
}
);
foreach($actions as $name => $action){
benchmark($name, $iterations, $action);
}
//END
चूंकि मैं यह कर रहा था, मैंने प्रदर्शन करने वाले ऑपरेशनों की जांच करने की भी कोशिश की, जो सामान्य रूप से गिनती () / खाली () के साथ जुड़े होंगे।
PHP 5.4.39 का उपयोग करना:
Empty empty() 0.118691
Empty count() 0.218974
Full empty() 0.133747
Full count() 0.216424
IF empty empty() 0.166474
IF empty count() 0.235922
IF full empty() 0.120642
IF full count() 0.248273
OR empty empty() 0.123875
OR empty count() 0.258665
OR full empty() 0.157839
OR full count() 0.224869
IF/ELSE empty empty() 0.167004
IF/ELSE empty count() 0.263351
IF/ELSE full empty() 0.145794
IF/ELSE full count() 0.248425
( ? : ) empty empty() 0.169487
( ? : ) empty count() 0.265701
( ? : ) full empty() 0.149847
( ? : ) full count() 0.252891
हिपहॉप वीएम 3.6.1 (डीबीजी) का उपयोग करना
Empty empty() 0.210652
Empty count() 0.212123
Full empty() 0.206016
Full count() 0.204722
IF empty empty() 0.227852
IF empty count() 0.219821
IF full empty() 0.220823
IF full count() 0.221397
OR empty empty() 0.218813
OR empty count() 0.220105
OR full empty() 0.229118
OR full count() 0.221787
IF/ELSE empty empty() 0.221499
IF/ELSE empty count() 0.221274
IF/ELSE full empty() 0.221879
IF/ELSE full count() 0.228737
( ? : ) empty empty() 0.224143
( ? : ) empty count() 0.222459
( ? : ) full empty() 0.221606
( ? : ) full count() 0.231288
यदि आप PHP का उपयोग कर रहे हैं तो निष्कर्ष:
खाली () दोनों परिदृश्यों में गिनती () से बहुत तेज है, खाली और आबादी वाले सरणी के साथ
गिनती () पूर्ण या खाली सरणी के साथ एक ही प्रदर्शन करता है।
एक साधारण IF या सिर्फ Boolean ऑपरेशन करना एक समान है।
IF / ELSE ((?) की तुलना में बहुत अधिक कुशल है। जब तक आप बीच में अभिव्यक्ति के साथ अरबों पुनरावृत्तियों कर रहे हैं यह पूरी तरह से महत्वहीन है।
यदि आप HHVM का उपयोग कर रहे हैं तो निष्कर्ष:
खाली () एक नन्हा-नन्हा सा है जो गिनती की तुलना में तेजी से () है, लेकिन तुच्छ रूप से ऐसा है।
[बाकी PHP में ही है]
निष्कर्ष के निष्कर्ष में, अगर आपको यह जानना आवश्यक है कि क्या सरणी खाली है हमेशा खाली का उपयोग करें ();
यह सिर्फ एक जिज्ञासु परीक्षा थी बस कई चीजों को ध्यान में रखे बिना। यह सिर्फ अवधारणा का प्रमाण है और उत्पादन में संचालन को प्रतिबिंबित नहीं कर सकता है।