<?php
class Example
{
public static function test(){
echo 'test';
}
public function test2(){
echo 'test2';
}
}
Example::test(); //static method สามารถเรียกใช้ได้โดยไม่ต้องเรียกผ่าน object
$e = new Example();
$e->test2(); //object method จะต้องเรียกผ่าน object ผ่านทางชื่อ class อย่าง Example ไม่ได้
?>