3v4l.org

run code in 300+ PHP versions simultaneously
<?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.3.9 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.37, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.29 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
bool(false) bool(true) bool(true) bool(true) bool(true) bool(true)
Process exited with code 137.
Output for 5.3.0 - 5.3.7
bool(false) bool(true) bool(true) Warning: is_a() expects exactly 2 parameters, 3 given in /in/sSXjc on line 9 Warning: is_a() expects exactly 2 parameters, 3 given in /in/sSXjc on line 9 Warning: is_a() expects exactly 2 parameters, 3 given in /in/sSXjc on line 9 NULL NULL NULL
Process exited with code 137.
Output for 5.0.3 - 5.0.5, 5.1.1 - 5.1.6, 5.2.0 - 5.2.17
bool(false) bool(true) bool(true) Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/sSXjc on line 9 Warning: Wrong parameter count for is_a() in /in/sSXjc on line 9 Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/sSXjc on line 9 Warning: Wrong parameter count for is_a() in /in/sSXjc on line 9 Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/sSXjc on line 9 Warning: Wrong parameter count for is_a() in /in/sSXjc on line 9 NULL NULL NULL
Process exited with code 137.
Output for 5.0.0 - 5.0.2
bool(false) bool(false) bool(false) Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/sSXjc on line 9 Warning: Wrong parameter count for is_a() in /in/sSXjc on line 9 Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/sSXjc on line 9 Warning: Wrong parameter count for is_a() in /in/sSXjc on line 9 Strict Standards: is_a(): Deprecated. Please use the instanceof operator in /in/sSXjc on line 9 Warning: Wrong parameter count for is_a() in /in/sSXjc on line 9 NULL NULL NULL
Process exited with code 137.
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9
bool(false) bool(false) bool(false) Warning: Wrong parameter count for is_a() in /in/sSXjc on line 9 Warning: Wrong parameter count for is_a() in /in/sSXjc on line 9 Warning: Wrong parameter count for is_a() in /in/sSXjc on line 9 NULL NULL NULL
Process exited with code 137.

preferences:
309.76 ms | 402 KiB | 341 Q