鑑於以下類:訪問對象通過一個抽象的功能
<?php
class test{
static public function statfunc()
{
echo "this is the static function<br/>";
$api= new object;
}
}
class traductor
{
public function display()
{
echo "this is the object function";
}
}
test::statfunc();
$api->display();
這不顯示消息"this is the static function<br/>"
。
有沒有辦法通過靜態函數實例化並將該對象外部?
謝謝......我對對象編程代碼沒有經驗。
感謝您的幫助,簡單快捷!感謝編輯也。 –