3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace Bozok\Component\AidKit\Contract\AidKit; interface Collection extends \ArrayAccess, \Countable, \Iterator { /** * - * * @param mixed $items * * @return array */ public static function make($items = []); } class Cla implements Collection { public function __construct($items) { print_r($items); } public static function make($items = 1) { return new static($items); } } echo Cla::make(2+5+6+7+7+78+8);
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Class Bozok\Component\AidKit\Contract\AidKit\Cla contains 10 abstract methods and must therefore be declared abstract or implement the remaining methods (ArrayAccess::offsetExists, ArrayAccess::offsetGet, ArrayAccess::offsetSet, ...) in /in/qXcuL on line 20
Process exited with code 255.
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
Fatal error: Class Bozok\Component\AidKit\Contract\AidKit\Cla contains 10 abstract methods and must therefore be declared abstract or implement the remaining methods (ArrayAccess::offsetExists, ArrayAccess::offsetGet, ArrayAccess::offsetSet, ...) in /in/qXcuL on line 30
Process exited with code 255.

preferences:
169.21 ms | 402 KiB | 227 Q