当前位置: 移动技术网 > IT编程>开发语言>PHP > PHP接口

PHP接口

2018年08月28日  | 移动技术网IT编程  | 我要评论

php接口

php接口(interface)作用类似于继承中的父类,接口是用于给其他的类继承用的,但是接口中定义的方法都是没有方法体的且定义的方法必须是公有的。
举例:

<?php
    interface itemplate{
        public function eat($food);
        public function learn($code);
    }
    class student implements itemplate{
        public function eat($food){
            echo "student eat {$food}";
        }
        public function learn($code){
            echo "student learn {$code}";
        }
    }
    $student = new student();
    $student->eat('apple');
    echo '<br />';
    $student->learn('php');
?>

输出:

student eat apple
student learn php

接口中除了方法也是可以定义属性的,但必须是常量。

<?php
    interface itemplate{
        public function eat($food);
        public function learn($code);
        const a='我是常量';
    }
    class student implements itemplate{
        public function eat($food){
            echo "student eat {$food}";
        }
        public function learn($code){
            echo "student learn {$code}";
        }
        public function changliang(){
            echo itemplate::a;
        }

    }
    $student = new student();
    $student->eat('apple');
    echo '<br />';
    $student->learn('php');
    echo '<br />';
    $student->changliang();
?>

输出:

student eat apple
student learn php
我是常量

那么既然是定义给其他类使用,就存在继承的问题,接口是可以多继承的。
举例:

<?php
    interface itemplate1{
        public function eat($food);
    }
    interface itemplate2{
        public function learn($code);
    }
    class student implements itemplate1,itemplate2{
        public function eat($food){
            echo "student eat {$food}";
        }
        public function learn($code){
            echo "student learn {$code}";
        }
    }
    $student = new student();
    $student->eat('apple');
    echo '<br />';
    $student->learn('php');
?>

输出:

student eat apple
student learn php

这样就在student类中继承了itemplate1itemplate2接口,话可以先让itemplate2接口继承itemplate1接口,再让student类去继承itemplate1接口,实现的效果同上。
举例:

<?php
    interface itemplate1{
        public function eat($food);
    }
    interface itemplate2 extends itemplate1{
        public function learn($code);
    }
    class student implements itemplate2{
        public function eat($food){
            echo "student eat {$food}";
        }
        public function learn($code){
            echo "student learn {$code}";
        }
    }
    $student = new student();
    $student->eat('apple');
    echo '<br />';
    $student->learn('php');
?>

输出:

student eat apple
student learn php

总结一下:

  • 接口不能实例化
  • 接口中的方法不能有方法体
  • 继承接口的方法必须实现接口中的所有方法
  • 一个类可以继承多个接口
  • 接口中的属性必须是常量
  • 接口中的方法必须是public(默认public)

不对的地方还望dalao们指正。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网