3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MyCountable implements Countable { public function count($mySpecialFilterArgument = null) { if($mySpecialFilterArgument === null) { // expect that we were called from count($myCountable) var_dump(0); } else { // expect that we manually called $myCountable->count($mySpecialFilterArgument) var_dump(1); } } } $myCountable = new MyCountable; $myCountable->count(1); count($myCountable); count($myCountable, COUNT_NORMAL); count($myCountable, COUNT_RECURSIVE);
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Return type of MyCountable::count($mySpecialFilterArgument = null) should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/4O9nA on line 4 int(1) int(0) int(0) int(0)

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