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->getInterfaceNames()); var_dump($refShipWithInterface->getInterfaceNames()); var_dump($refShipOnlyAbstract->implementsInterface("ShipInterface")); var_dump($refShipWithInterface->implementsInterface("ShipInterface"));
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" } array(1) { [0]=> string(13) "ShipInterface" } array(1) { [0]=> string(13) "ShipInterface" } bool(true) bool(true)

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:
35.15 ms | 402 KiB | 8 Q