|
两个类库都是自定义的类库
在 ./application/libraries 下新建了两个文件 Father.php Son.php
然后让 son 继承father 我先上代码:
Father.php代码:
<?php
class Father{
public function edit(){
echo 'father/edit';
}
}
?>
Son.php
<?php
class Son extends Father{
public function index() {
echo 'son/index';
}
}
?>
这样写继承,在调用的时候会出错。
我应该怎么写?
|
|