3v4l.org

run code in 300+ PHP versions simultaneously
<?php $find_subreddit = array( array( 'title' => 'What kind of developer/designer are you, and how much do you make?', 'url' => 'http://www.reddit.com/r/webdev/comments/29hh0c/what_kind_of_developerdesigner_are_you_and_how/', 'upvotes' => 82, 'comments' => 255 ), array( 'title' => 'Want to learn or make the switch to Python? Here\'s an excellent resource to get you started.', 'url' => 'http://www.fullstackpython.com/', 'upvotes' => 23, 'comments' => 0 ), array( 'title' => 'Very Thorough Git Tutorial', 'url' => 'http://www.vogella.com/tutorials/Git/article.html', 'upvotes' => 188, 'comments' => 7 ), array( 'title' => 'List of URLs censored from Google by EU "Right to be Forgotten" ruling', 'url' => 'http://hiddenfromgoogle.com/', 'upvotes' => 13, 'comments' => 3 ), ); ?> <?php foreach ($find_subreddit as $link): ?> <?php print_r($link); ?> <li> <ul> <li><?php echo $link['title']; ?></li> <li><?php echo $link['url']; ?></li> <li><?php echo $link['upvotes']; ?></li> </ul> </li> <?php endforeach; ?> ?>
Output for 4.3.0 - 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, 5.3.0 - 5.3.29, 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.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Array ( [title] => What kind of developer/designer are you, and how much do you make? [url] => http://www.reddit.com/r/webdev/comments/29hh0c/what_kind_of_developerdesigner_are_you_and_how/ [upvotes] => 82 [comments] => 255 ) <li> <ul> <li>What kind of developer/designer are you, and how much do you make?</li> <li>http://www.reddit.com/r/webdev/comments/29hh0c/what_kind_of_developerdesigner_are_you_and_how/</li> <li>82</li> </ul> </li> Array ( [title] => Want to learn or make the switch to Python? Here's an excellent resource to get you started. [url] => http://www.fullstackpython.com/ [upvotes] => 23 [comments] => 0 ) <li> <ul> <li>Want to learn or make the switch to Python? Here's an excellent resource to get you started.</li> <li>http://www.fullstackpython.com/</li> <li>23</li> </ul> </li> Array ( [title] => Very Thorough Git Tutorial [url] => http://www.vogella.com/tutorials/Git/article.html [upvotes] => 188 [comments] => 7 ) <li> <ul> <li>Very Thorough Git Tutorial</li> <li>http://www.vogella.com/tutorials/Git/article.html</li> <li>188</li> </ul> </li> Array ( [title] => List of URLs censored from Google by EU "Right to be Forgotten" ruling [url] => http://hiddenfromgoogle.com/ [upvotes] => 13 [comments] => 3 ) <li> <ul> <li>List of URLs censored from Google by EU "Right to be Forgotten" ruling</li> <li>http://hiddenfromgoogle.com/</li> <li>13</li> </ul> </li> ?>

preferences:
312.36 ms | 409 KiB | 456 Q