3v4l.org

run code in 300+ PHP versions simultaneously
123<?php class A {} class B extends A{} class C extends B{} $b = 'B'; var_dump(is_subclass_of('A', 'A'), is_subclass_of('B', 'A'), is_subclass_of($b, 'A')); var_dump(is_a('A', 'A', true), is_a('B', 'A', true), is_a($b, 'A', true)); $className = 'C'; while($_parentClass = get_parent_class($className)) $parentClass = $_parentClass; var_dump($className, $parentClass);
Output for 5.6.38, 7.1.22, 7.2.10 - 7.2.33, 7.3.16 - 7.3.33, 7.4.3 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
123bool(false) bool(true) bool(true) bool(true) bool(true) bool(true)
Process exited with code 137.
Output for 5.0.3 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.5
123bool(false) bool(true) bool(true) Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/kFUGJ on line 9 Warning: Wrong parameter count for is_a() in /in/kFUGJ on line 9 Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/kFUGJ on line 9 Warning: Wrong parameter count for is_a() in /in/kFUGJ on line 9 Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/kFUGJ on line 9 Warning: Wrong parameter count for is_a() in /in/kFUGJ on line 9 NULL NULL NULL
Process exited with code 137.
Output for 5.0.0 - 5.0.2
123bool(false) bool(false) bool(false) Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/kFUGJ on line 9 Warning: Wrong parameter count for is_a() in /in/kFUGJ on line 9 Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/kFUGJ on line 9 Warning: Wrong parameter count for is_a() in /in/kFUGJ on line 9 Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/kFUGJ on line 9 Warning: Wrong parameter count for is_a() in /in/kFUGJ on line 9 NULL NULL NULL
Process exited with code 137.
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.7
123bool(false) bool(false) bool(false) Warning: Wrong parameter count for is_a() in /in/kFUGJ on line 9 Warning: Wrong parameter count for is_a() in /in/kFUGJ on line 9 Warning: Wrong parameter count for is_a() in /in/kFUGJ on line 9 NULL NULL NULL
Process exited with code 137.

preferences:
169.31 ms | 402 KiB | 182 Q