Home > Backend Development > PHP Tutorial > How to implement a single interface in php_PHP tutorial

How to implement a single interface in php_PHP tutorial

WBOY
Release: 2016-07-13 09:49:09
Original
874 people have browsed it

The implementation method of php single interface

This article describes the implementation method of php single interface. Share it with everyone for your reference. The specific implementation method is as follows:

 ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

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";

}

}

?>

1

2 3

45 6 7 8 9 10
11
12
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
<🎜>interface staff_i<🎜> <🎜>{<🎜> <🎜>function setID($id);<🎜> <🎜>function getID();<🎜> <🎜>function setName($name);<🎜> <🎜>function getName();<🎜> <🎜>}<🎜> <🎜>class staff implements staff_i //This class is used to implement the staff_i interface<🎜> <🎜>{<🎜> <🎜>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() //This is a method that does not exist in the interface { echo "Test"; } } ?>
I hope this article will be helpful to everyone’s PHP programming design. http://www.bkjia.com/PHPjc/1020289.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1020289.htmlTechArticleThe implementation method of php single interface This article describes the implementation method of php single interface. Share it with everyone for your reference. The specific implementation method is as follows: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template