本文實例講述了php多重接口的實現方法。分享給大家供大家參考。具體如下:
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
35
36
37
|
<?php interface staff_i1 //接口1 { function setID( $id ); function getID(); } interface staff_i2 //接口2 { function setName( $name ); function getName(); } class staff implements staff_i1, staff_i2 //接口的實現 { 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程序設計有所幫助。