1--TEST-- 2Testing instanceof operator with several operators 3--FILE-- 4<?php 5 6$a = new stdClass; 7var_dump($a instanceof stdClass); 8 9var_dump(new stdCLass instanceof stdClass); 10 11$b = create_function('', 'return new stdClass;'); 12var_dump($b() instanceof stdClass); 13 14$c = array(new stdClass); 15var_dump($c[0] instanceof stdClass); 16 17var_dump(@$inexistent instanceof stdClass); 18 19var_dump("$a" instanceof stdClass); 20 21?> 22--EXPECTF-- 23bool(true) 24bool(true) 25bool(true) 26bool(true) 27bool(false) 28 29Catchable fatal error: Object of class stdClass could not be converted to string in %s on line %d 30