You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
187 B

  1. <?php
  2. class C{}
  3. class D extends C{} //类D继承自类C
  4. class E{}
  5. functionf(C $c){
  6. echo get_class($c)."\n";
  7. }
  8. f(new C);
  9. f(new D);
  10. f(new E);
  11. ?>