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 git.master, git.master_jit, rfc.property-hooks
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> ?>

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
46.97 ms | 405 KiB | 8 Q