<?php $comments = [ '2020-01-08 20:40:00'=>[ id=>1, parent_id=>0, comment_text=>'1', date_posted=>'2020-01-08 20:40:00', ], '2020-01-08 20:41:00'=>[ id=>2, parent_id=>1, comment_text=>'1.1', date_posted=>'2020-01-08 20:41:00', ], '2020-01-08 20:42:00'=>[ id=>3, parent_id=>0, comment_text=>'2', date_posted=>'2020-01-08 20:42:00', ], '2020-01-08 20:43:00'=>[ id=>4, parent_id=>0, comment_text=>'3', date_posted=>'2020-01-08 20:43:00', ], '2020-01-08 20:44:00'=>[ id=>5, parent_id=>3, comment_text=>'2.1', date_posted=>'2020-01-08 20:44:00', ], '2020-01-08 20:45:00'=>[ id=>6, parent_id=>2, comment_text=>'1.1.1', date_posted=>'2020-01-08 20:45:00', ], '2020-01-08 20:46:00'=>[ id=>7, parent_id=>1, comment_text=>'1.2', date_posted=>'2020-01-08 20:46:00', ], ]; $comment_hash = []; foreach($comments as $comment) { if(!$comment_hash[$comment['parent_id']]) { $comment_hash[$comment['parent_id']] = []; } $comment_hash[$comment['parent_id']][] = $comment; } function displayComments($comments, $comment_hash, $depth) { foreach($comments as $comment) { print($comment['comment_text']); print("\n"); displayComments($comment_hash[$comment['id']], $comment_hash, $depth + 1); } } displayComments($comment_hash[0], $comment_hash, 0);
Standard input is empty
3
2
2.1
1
1.2
1.1
1.1.1
PHP Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 5 PHP Warning: Use of undefined constant parent_id - assumed 'parent_id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 6 PHP Warning: Use of undefined constant comment_text - assumed 'comment_text' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 7 PHP Warning: Use of undefined constant date_posted - assumed 'date_posted' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 8 PHP Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 11 PHP Warning: Use of undefined constant parent_id - assumed 'parent_id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 12 PHP Warning: Use of undefined constant comment_text - assumed 'comment_text' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 13 PHP Warning: Use of undefined constant date_posted - assumed 'date_posted' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 14 PHP Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 17 PHP Warning: Use of undefined constant parent_id - assumed 'parent_id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 18 PHP Warning: Use of undefined constant comment_text - assumed 'comment_text' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 19 PHP Warning: Use of undefined constant date_posted - assumed 'date_posted' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 20 PHP Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 23 PHP Warning: Use of undefined constant parent_id - assumed 'parent_id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 24 PHP Warning: Use of undefined constant comment_text - assumed 'comment_text' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 25 PHP Warning: Use of undefined constant date_posted - assumed 'date_posted' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 26 PHP Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 29 PHP Warning: Use of undefined constant parent_id - assumed 'parent_id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 30 PHP Warning: Use of undefined constant comment_text - assumed 'comment_text' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 31 PHP Warning: Use of undefined constant date_posted - assumed 'date_posted' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 32 PHP Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 35 PHP Warning: Use of undefined constant parent_id - assumed 'parent_id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 36 PHP Warning: Use of undefined constant comment_text - assumed 'comment_text' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 37 PHP Warning: Use of undefined constant date_posted - assumed 'date_posted' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 38 PHP Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 41 PHP Warning: Use of undefined constant parent_id - assumed 'parent_id' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 42 PHP Warning: Use of undefined constant comment_text - assumed 'comment_text' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 43 PHP Warning: Use of undefined constant date_posted - assumed 'date_posted' (this will throw an Error in a future version of PHP) in /home/yykYru/prog.php on line 44 PHP Notice: Undefined offset: 1 in /home/yykYru/prog.php on line 51 PHP Notice: Undefined offset: 2 in /home/yykYru/prog.php on line 51 PHP Notice: Undefined offset: 3 in /home/yykYru/prog.php on line 51 PHP Notice: Undefined offset: 0 in /home/yykYru/prog.php on line 51 PHP Notice: Undefined offset: 4 in /home/yykYru/prog.php on line 64 PHP Warning: Invalid argument supplied for foreach() in /home/yykYru/prog.php on line 59 PHP Notice: Undefined offset: 5 in /home/yykYru/prog.php on line 64 PHP Warning: Invalid argument supplied for foreach() in /home/yykYru/prog.php on line 59 PHP Notice: Undefined offset: 7 in /home/yykYru/prog.php on line 64 PHP Warning: Invalid argument supplied for foreach() in /home/yykYru/prog.php on line 59 PHP Notice: Undefined offset: 6 in /home/yykYru/prog.php on line 64 PHP Warning: Invalid argument supplied for foreach() in /home/yykYru/prog.php on line 59