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

虚函数实现php版

程序员文章站 2022-05-11 14:31:21
...
虚函数,实现php

1. virtual-function.php

<?php
class ParentClass {    
 
  static public function say( $str ) {    
    static::do_print( $str );    
  }    
 
  static public function do_print( $str ) {    
    echo "<p>Parent says $str</p>";    
  }    
 
}    
 
class ChildClass extends ParentClass {    
 
  static public function do_print( $str ) {    
    echo "<p>Child says $str</p>";    
  }    
 
}    
 
 
class AnotherChildClass extends ParentClass {    
 
  static public function do_print( $str ) {    
    echo "<p>AnotherChild says $str</p>";    
  }    
 
}    
 
echo phpversion();
 
$a=new ChildClass();
 
$a->say( 'Hello' );  
$b=new AnotherChildClass();
 
$b->say( 'Hello' );

以上就是虚函数实现php版的内容,更多相关内容请关注PHP中文网(www.php.cn)!

相关标签: 虚函数 实现php