3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = array( array('id' => 1, 'title' => 'a', 'parent' => 0), array('id' => 2, 'title' => 'b', 'parent' => 1), array('id' => 3, 'title' => 'c', 'parent' => 1), array('id' => 5, 'title' => 'e', 'parent' => 0), array('id' => 6, 'title' => 'f', 'parent' => 5), array('id' => 7, 'title' => 'g', 'parent' => 5), array('id' => 8, 'title' => 'h', 'parent' => 0), array('id' => 9, 'title' => 'k', 'parent' => 8), array('id' => 10, 'title' => 'l', 'parent' => 8), array('id' => 11, 'title' => 'm', 'parent' => 10), array('id' => 12, 'title' => 'n', 'parent' => 10), ); function lookForParent($array, $id, $title) { $return = array(); for($i = 0; $i <= count($array); $i++) { //Look for the parent on the second level if(isset($array[$i][$id])) { $return[$i][$id][] = $title; break; } else { if(!empty($array[$i])) { $return_val = lookForParent($array[$i], $id, $title); if(!empty($return_val)) { $return[$i][$id][] = $return_val; break; } } } } return $return; } $new = array(); foreach($arr as $val) { if($val['parent'] > 0) { if(isset($new[$val['parent']])) { //Look if the parent exist on the first level $new[$val['parent']][$val['id']][] = $val['title']; } else { for($i = 0; $i <= count($new); $i++) { $return = lookForParent($new[$i], $val['id'], $val['title']); if(!empty($return)) { $new = array_merge($new, $return); } } } } else { $new[$val['id']][] = $val['title']; } } var_dump($new);
Output for 8.0.10 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined array key 0 in /in/krMGK on line 44 Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /in/krMGK:19 Stack trace: #0 /in/krMGK(44): lookForParent(NULL, 11, 'm') #1 {main} thrown in /in/krMGK on line 19
Process exited with code 255.
Output for 8.0.0 - 8.0.9
Warning: Undefined array key 0 in /in/krMGK on line 44 Fatal error: Uncaught TypeError: count(): Argument #1 ($var) must be of type Countable|array, null given in /in/krMGK:19 Stack trace: #0 /in/krMGK(44): lookForParent(NULL, 11, 'm') #1 {main} thrown in /in/krMGK on line 19
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.16 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined offset: 0 in /in/krMGK on line 44 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count
Process exited with code 137.
Output for 7.3.32 - 7.3.33
Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that implements Countable in /in/krMGK on line 19 Warning: count(): Parameter must be an array or an object that impl
Process exited with code 137.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20
Notice: Undefined offset: 0 in /in/krMGK on line 44 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 262144 bytes) in /in/krMGK on line 24
Process exited with code 255.
Output for 5.6.8 - 5.6.28
Notice: Undefined offset: 0 in /in/krMGK on line 44 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32 bytes) in /in/krMGK on line 20
Process exited with code 255.
Output for 5.5.24 - 5.5.35
Notice: Undefined offset: 0 in /in/krMGK on line 44 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 130968 bytes) in /in/krMGK on line 25
Process exited with code 255.
Output for 5.4.0 - 5.4.45
Notice: Undefined offset: 0 in /in/krMGK on line 44 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 72 bytes) in /in/krMGK on line 18
Process exited with code 255.
Output for 5.3.0 - 5.3.29
Notice: Undefined offset: 0 in /in/krMGK on line 44 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 523800 bytes) in /in/krMGK on line 25
Process exited with code 255.
Output for 4.3.3 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Notice: Undefined offset: 0 in /in/krMGK on line 44
Process exited with code 139.
Output for 4.3.0 - 4.3.2
Notice: Undefined offset: 0 in /in/krMGK on line 44 Notice: Uninitialized string offset: 11 in /in/krMGK on line 20
Process exited with code 139.

preferences:
260.47 ms | 401 KiB | 311 Q