您好我有问题,
使用我的代码,我不知道我修复了这段代码
错误
致命错误:类组包含1个抽象方法,因此必须在第16行的D:\ xampp \ htdocs \ tes \ index.php中声明为抽象或实现其余方法(Aturan :: cari)
这是我的代码
<?php
interface Aturan {
public function cari($id);
}
trait Bantuan {
public function ubah_ke_string_json($str){
return NULL;
}
}
abstract class Aturan_abstrak implements Aturan {
use Bantuan;
}
class Group extends Aturan_abstrak {
protected $grup;
public function Group($grup) {
$this->grup = $grup;
}
}
$grup = new Group(array(
"C" => array("administrator"),
"A" => array("operator","staff")
));
echo $grup->cari("A");
?>
我很困惑,请帮帮我。