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.

16 lines
260 B

3 years ago
  1. <?php
  2. class A {}
  3. class B {}
  4. $obj = new A;
  5. $ret=$obj instanceof B;
  6. echo $ret.'<br>';
  7. if($obj instanceof B){
  8. echo 'true'.'<br>';
  9. }else{
  10. echo 'false'.'<br>';
  11. }
  12. $ret=$obj instanceof A;
  13. echo $ret.'<br>';
  14. ?>