Home > php教程 > php手册 > body text

php接口的使用实例函数

WBOY
Release: 2016-06-13 11:16:57
Original
1476 people have browsed it

php接口的使用实例函数  

interface Ren1
{const XINGMING="张三";
 function shuohua1();
 function shuohua2();}
interface Ren2 extends Ren1
{function shuohua3();
 function shuohua4();}
interface Ren3
{function shuohua5();}
interface Ren4
{function shuohua6();}
class Ren5
{function shuohua7()
 {echo "7777
";}}
class Ren extends Ren5 implements Ren2,Ren3,Ren4
{function shuohua1()
{echo "1111
";}
 function shuohua2()
{echo "2222
";}
 function shuohua3()
{echo "3333
";}
 function shuohua4()
{echo "4444
";}
 function shuohua5()
{echo "5555
";}
 function shuohua6()
{echo "6666
";}}
$r=new Ren();
echo Ren::XINGMING."
";
$r->shuohua1();
$r->shuohua2();
$r->shuohua3();
$r->shuohua4();
$r->shuohua5();
$r->shuohua6();
$r->shuohua7();
例输出:
张三
1111
2222
3333
4444
5555
6666
7777


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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!