이 기사의 예에서는 PHP 단일 인터페이스의 구현 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
<?php interface staff_i { function setID($id); function getID(); function setName($name); function getName(); } class staff implements staff_i //该类用于实现staff_i接口 { private $id; private $name; function setID($id) { $this->id = $id; } function getID() { return $this->id; } function setName($name) { $this->name = $name; } function getName() { return $this->name; } function otherFunc() //这是一个接口中不存在的方法 { echo "Test"; } } ?>
이 기사가 모든 사람의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.