Detailed explanation of various PHP object-oriented concepts and usage example codes

伊谢尔伦
Release: 2023-03-12 06:54:02
Original
966 people have browsed it

This article mainly introduces PHP object-oriented programming methods, and combines examples with a detailed analysis of the concepts, definitions, and constructors of classes involved in PHP object-oriented programming, Destructor, inheritance, overloading, interface, Abstract class and other concepts and usage skills, friends in need can refer to the following

This article analyzes PHP with examples Object-oriented programming methods. Share it with everyone for your reference, the details are as follows:

PHP5 starts to support object-oriented, the example is as follows: 

<?php
class classname{
  var $attr1;
  var $attr2;
  public $attribute;
  const PI = 3.14;
  // 构造函数
  function construct($param = &#39;default&#39;){
    echo "Constructor called with parameter $param<br />";
  }
  // 析构函数
  function destruct(){
    echo &#39;<br />destruct&#39;;
  }
  //
  function oper1(){
    echo &#39;oper1<br />&#39;;
  }
  function oper2($param){
    $this->attr1 = $param;
    echo $this->attr1;
  }
  protected function oper3(){
    echo &#39;this is protected function<br />&#39;;
  }
  // 禁止继承
  final function oper5(){
  }
  function get($name){
    return $this->$name;
  }
  function set($name, $value){
    $this->$name = $value;
  }
  // 静态方法
  static function double($param){
    return $param * $param;
  }
}
$a = new classname(&#39;First&#39;);
$b = new classname(&#39;Second&#39;);
$c = new classname();
$c->oper2("hello");
echo &#39;<br />&#39;;
echo $c->attr1;
echo &#39;<br /><br />&#39;;
echo &#39; Per-Class常量 classname::PI -&#39;.classname::PI;
echo &#39;<br />静态方法: classname::double(3) - &#39; . classname::double(3);
echo &#39;<br />&#39;;
// 实现继承
echo &#39;实现继承<br />&#39;;
class B extends classname{
  function oper4(){
    $this->oper3(); // protected方法只能在
  }
  function oper1(){ // 重载
    echo &#39;this is class B /&#39;s oper1. <br />&#39;;
  }
}
$d = new B("forth");
$d->oper1();
$d->oper4();
// 接口
interface Displayable
{
  function display();
  function show();
}
class C implements Displayable
{
  function display(){
    echo &#39;这是对应接口的方法.<br />&#39;;
  }
  function show(){}
}
$e = new C();
$e->display();
echo &#39;检查$e是否为C的实例:&#39;;
echo ($e instanceof C) ? &#39;Yes&#39;:&#39;No&#39;;
// 克隆对象
$f = clone $e;
echo &#39;<br /><br />可以使用clone()方法,在使用clone关键字时调用&#39;;
// 抽象类
abstract class E{}
// $f = new E(); // 这行将报错,不能实例化抽象类
// 参数重载,多态
class F{
  public $a = 1;
  public $b = 2;
  public $c = 3;
  function displayString($elem){
    echo &#39;<br />string:&#39;.$elem;
  }
  function displayInt($elem){
    echo &#39;<br />int:&#39;.$elem;
  }
  // 注意参数$p,是作为数组传入,必须使用下标访问
  function call($method, $p){
    if ($method == &#39;display&#39;){
      if (is_string($p[0])){
        $this->displayString($p[0]);
      } else {
        $this->displayInt($p[0]);
      }
    }
  }
}
$g = new F();
$g->display(&#39;abc&#39;);
// 迭代器,读出实例的所有属性
foreach ($g as $att){
  echo &#39;<br />&#39;.$att;
}
// 反射
echo &#39;<br />&#39;;
$class = new ReflectionClass(&#39;F&#39;);
echo &#39;<pre class="brush:php;toolbar:false">&#39;;
echo $class;
echo &#39;
'; ?>
Copy after login

The above is the detailed content of Detailed explanation of various PHP object-oriented concepts and usage example codes. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!