Did some tests and found out that scripts of type
$a=5; function foo(){ global $a; return $a +5; } foo();
have relatively bad performance ….
try to use something like $a=5; function foo($a){ return $a +5; } foo($a);
instead …
|
||||||
|
Did some tests and found out that scripts of type $a=5; function foo(){ global $a; return $a +5; } foo(); have relatively bad performance …. try to use something like $a=5; function foo($a){ return $a +5; } foo($a); instead … |
||||||
|
Copyright © 2012 are.ehibou.com - All Rights Reserved Compression Plugin made by Web Hosting |
||||||