编辑::哦,我忘了
class Test1{ public static function test(){ for($i=0; $i<=1000; $i++) $j += $i; } } class Test2{ public function test() { for ($i=0; $i<=1000; $i++){ $j += $i; } } }
对于这个算法
$time_start = microtime(); $test1 = new Test2(); for($i=0; $i<=100;$i++) $test1->test(); $time_end = microtime(); $time1 = $time_end - $time_start; $time_start = microtime(); for($i=0; $i<=100;$i++) Test1::test(); $time_end = microtime(); $time2 = $time_end - $time_start; $time = $time1 - $time2; echo "Difference: $time";
我有结果
Difference: 0.007561
当你不需要你周围的对象的方法时,你应该总是使用静态的,并且当你需要一个对象时使用动态的.在您提供的示例中,您不需要对象,因为该方法不与您的类中的任何属性或字段进行交互.
原文链接:https://www.f2er.com/php/131378.html这个应该是静态的,因为它不需要一个对象:
class Person { public static function GetPersonByID($id) { //run sql query here $res = new Person(); $res->name = $sql["name"]; //fill in the object return $res; } }
这应该是动态的,因为它使用它所在的对象:
class Person { public $Name; public $Age; public function HaveBirthday() { $Age++; } }