在扩展了扩展另一个类的类后,我开始收到奇怪的警告
Event_Feed_Item > My_Feed_Item > SimplePie_Item
- Cannot extend from interface
'SimplePie_Item'
- Implementors of methods in
'SimplePie_Item'
但是在运行时它运行正常。 SimplePie_Item也不是一个接口,它是一个简单的类.. 只需知道我是否遇到麻烦,或者我是否可以忽略此警告
编辑我正在延长this class 这也是我班级的骨架
class My_Feed_Item extends SimplePie_Item // error is triggered here
{
protected $_source_id = null;
public function set_source ($source_id)
{
}
public function get_image ()
{
}
public function get_venue_id ()
{
}
public function get_venue_nm ()
{
}
public function cleanString($str)
{
}
}
class Event_Feed_Item extends My_Feed_Item
{
public function get_event_nm ()
{
}
public function get_event_start_dt ()
{
}
public function get_event_end_dt ()
{
}
}
答案 0 :(得分:3)
我遇到了同样的问题。确保Zend Studio中项目的构建路径和/或包含路径具有父类所在目录的路径。在PHP Explorer中,右键单击该项目,然后选择Build Path - >配置构建路径。或者右键单击项目并选择“包含路径” - >配置包含路径。