Dotfiles, utilities, and other apparatus.
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.

12 lines
198 B

  1. <?php
  2. class foo {
  3. }
  4. $bar = new foo();
  5. if ($bar instanceof stdClass) {
  6. print "stdClass is a base class class for objects.";
  7. } else {
  8. print "stdClass is not a base class class for objects.";
  9. }