3v4l.org

run code in 300+ PHP versions simultaneously
<?php function is_cyclic(&$array) { $isRecursive = false; set_error_handler(function ($errno, $errstr) use (&$isRecursive) { $isRecursive = $errno === E_WARNING && mb_stripos($errstr, 'recursion'); }); try { count($array, COUNT_RECURSIVE); } finally { restore_error_handler(); } return $isRecursive; } $array = [1, [2, 3]]; $array[1][1] = &$array; var_dump(is_cyclic($array));

This is an error 500

Value for `_results` contains invalid data `array`


preferences:
153.11 ms | 1987 KiB | 14 Q