3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { private $a; protected $b; public $c; } class FooCountable implements \Countable { private $elements = [1,2,3]; public function count() { return count($this->elements); } } $tests = [ 'array' => [1,2,3], 'string' => 'hello world', 'number' => 123, 'iterator' => new \ArrayIterator([1,2,3]), 'countable' => new \FooCountable(), 'zero' => 0, 'string_zero' => '0', 'object' => new \Foo(), 'stdClass' => new \stdClass, 'null' => null, 'empty' => '', 'boolt' => true, 'boolf' => false ]; function countValid($array_or_countable, $mode = \COUNT_NORMAL) { if ( (\PHP_VERSION_ID >= 70300 && \is_countable($array_or_countable)) || \is_array($array_or_countable) || $array_or_countable instanceof \Countable ) { return \count($array_or_countable, $mode); } return null === $array_or_countable ? 0 : 1; } foreach($tests as $key => $test) { echo $key . ': ' . print_r(countValid($test), 1) . \PHP_EOL; } echo 'undefined: ' . print_r(countValid($undefined), 1) . \PHP_EOL;
Output for 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Deprecated: Return type of FooCountable::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/8M0Wd on line 14 array: 3 string: 1 number: 1 iterator: 3 countable: 3 zero: 1 string_zero: 1 object: 1 stdClass: 1 null: 0 empty: 1 boolt: 1 boolf: 1 Warning: Undefined variable $undefined in /in/8M0Wd on line 53 undefined: 0
Output for 8.0.0 - 8.0.30
array: 3 string: 1 number: 1 iterator: 3 countable: 3 zero: 1 string_zero: 1 object: 1 stdClass: 1 null: 0 empty: 1 boolt: 1 boolf: 1 Warning: Undefined variable $undefined in /in/8M0Wd on line 53 undefined: 0
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
array: 3 string: 1 number: 1 iterator: 3 countable: 3 zero: 1 string_zero: 1 object: 1 stdClass: 1 null: 0 empty: 1 boolt: 1 boolf: 1 Notice: Undefined variable: undefined in /in/8M0Wd on line 53 undefined: 0
Output for 7.3.32 - 7.3.33
array: 3 string: 1 number: 1 iterator: 3 countable: 3 zero: 1 string_zero: 1 object: 1 stdClass: 1 null: 0 empty: 1 boolt: 1 boolf: 1 undefined: 0
Output for 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[' in /in/8M0Wd on line 12
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/8M0Wd on line 10 Parse error: syntax error, unexpected '[' in /in/8M0Wd on line 12
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/8M0Wd on line 10 Parse error: parse error, unexpected '[' in /in/8M0Wd on line 12
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/8M0Wd on line 5
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/8M0Wd on line 5
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/8M0Wd on line 5
Process exited with code 255.

preferences:
262.42 ms | 401 KiB | 462 Q