--TEST-- PHP Spec test generated from ./expressions/primary_expressions/intrinsics_isset.php --FILE-- m)); $x1->m = 123; var_dump(isset($x1->m)); $x2 = new X2; var_dump(isset($x2->m)); --EXPECTF-- --------- TRUE ------------- bool(true) --------- NULL ------------- bool(false) --------- TRUE, 12.3, NULL ------------- bool(false) --------- undefined parameter ------------- Warning: %s Notice: Undefined variable: p in %s/expressions/primary_expressions/intrinsics_isset.php on line 30 NULL bool(false) NULL bool(false) int(10) bool(true) ---------- dynamic property ------------ bool(false) bool(true) Inside X2::__isset with $name m bool(false)