欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php接口的使用实例函数_PHP教程

程序员文章站 2024-01-29 20:25:22
...
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


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445500.htmlTechArticlephp接口的使用实例函数 interface Ren1 {const XINGMING=张三; function shuohua1(); function shuohua2();} interface Ren2 extends Ren1 {function shuohua3(); function shuohua4(...