3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface ShipInterface {} abstract class AbstractShip implements ShipInterface {} class ShipOnlyAbstract extends AbstractShip {} class ShipWithInterface extends AbstractShip implements ShipInterface {} $shipOnlyAbstract = new ShipOnlyAbstract(); $shipWithInterface = new ShipWithInterface(); var_dump($shipOnlyAbstract instanceof AbstractShip); var_dump($shipWithInterface instanceof AbstractShip); var_dump($shipOnlyAbstract instanceof ShipInterface); var_dump($shipWithInterface instanceof ShipInterface); var_dump(class_implements($shipOnlyAbstract)); var_dump(class_implements($shipWithInterface)); var_dump(class_parents($shipOnlyAbstract)); var_dump(class_parents($shipWithInterface)); $refShipOnlyAbstract = new ReflectionClass("ShipOnlyAbstract"); $refShipWithInterface = new ReflectionClass("ShipWithInterface"); var_dump($refShipOnlyAbstract); var_dump($refShipWithInterface);
Output for git.master, git.master_jit, rfc.property-hooks
bool(true) bool(true) bool(true) bool(true) array(1) { ["ShipInterface"]=> string(13) "ShipInterface" } array(1) { ["ShipInterface"]=> string(13) "ShipInterface" } array(1) { ["AbstractShip"]=> string(12) "AbstractShip" } array(1) { ["AbstractShip"]=> string(12) "AbstractShip" } object(ReflectionClass)#3 (1) { ["name"]=> string(16) "ShipOnlyAbstract" } object(ReflectionClass)#4 (1) { ["name"]=> string(17) "ShipWithInterface" }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
56.64 ms | 402 KiB | 8 Q