3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = array( array( 'url' => 'website.com1/etcetcetc', 'itag' => 43, 'quality' => 'medium', 'something' => 'nill' ), array( 'url' => 'website.com2/etcetcetc', 'itag' => 18, 'quality' => 'medium', 'something' => 'nill' ), array( 'url' => 'website.com3/etcetcetc', 'itag' => 5, 'quality' => 'small', 'something' => 'nill' ), array( 'url' => 'website.com4/etcetcetc', 'itag' => 36, 'quality' => 'small', 'something' => 'nill' ), array( 'url' => 'website.com5/etcetcetc', 'itag' => 17, 'quality' => 'small', 'something' => 'nill' ) ); $r = array(); function test($number) { foreach($array as $arr) if ($arr['itag'] == $number) { $r['url'] = $arr['url']; $r['itag'] = $arr['itag']; } } echo '<a href="'.$r['url'].'">quality: '.$r['itag'].'</a>';
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined array key "url" in /in/0JNT7 on line 21 Warning: Undefined array key "itag" in /in/0JNT7 on line 21 <a href="">quality: </a>

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:
56.51 ms | 401 KiB | 8 Q