3v4l.org

run code in 300+ PHP versions simultaneously
<?php $mysql_result[0]['id']="1"; $mysql_result[1]['id']="2"; $mysql_result[2]['id']="3"; $mysql_result[0]['address']="www.example.com/page1"; $mysql_result[1]['address']="www.example.com/page2"; $mysql_result[2]['address']="www.example.com/page3"; $mysql_result[0]['title']="Page 1"; $mysql_result[1]['title']="Page 2"; $mysql_result[2]['title']="Page 3"; $mysql_result[0]['content']="The quick dog jumps over the lazy dog."; $mysql_result[1]['content']="The best thing about morning is breakfast."; $mysql_result[2]['content']="Hotdogs are great ballpark food."; $mysql_result[0]['image']="image1.jpg"; $mysql_result[1]['image']="image2.jpg"; $mysql_result[2]['image']="image3.jpg"; foreach($mysql_result as $results) { $content = $results['content']; echo '<li class="media"> <a class="pull-left" href="'.$results['address'].'"> <img class="media-object thumbnail" src="'.$results['image'].'" style="height:100px !important"> </a> <div class="media-body"> <h4 class="media-heading"><a href="'.$results['address'].'">'.$results['title'].'</a></h4> <p>...'.str_replace($query,'<strong>'.$query.'</strong>', substr($content,strpos($content,$query)-25,160)).'...</p> </div> </li>'; }
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $query in /in/HnSED on line 35 Warning: Undefined variable $query in /in/HnSED on line 35 Warning: Undefined variable $query in /in/HnSED on line 35 Deprecated: strpos(): Passing null to parameter #2 ($needle) of type string is deprecated in /in/HnSED on line 35 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/HnSED on line 35 <li class="media"> <a class="pull-left" href="www.example.com/page1"> <img class="media-object thumbnail" src="image1.jpg" style="height:100px !important"> </a> <div class="media-body"> <h4 class="media-heading"><a href="www.example.com/page1">Page 1</a></h4> <p>... jumps over the lazy dog....</p> </div> </li> Warning: Undefined variable $query in /in/HnSED on line 35 Warning: Undefined variable $query in /in/HnSED on line 35 Warning: Undefined variable $query in /in/HnSED on line 35 Deprecated: strpos(): Passing null to parameter #2 ($needle) of type string is deprecated in /in/HnSED on line 35 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/HnSED on line 35 <li class="media"> <a class="pull-left" href="www.example.com/page2"> <img class="media-object thumbnail" src="image2.jpg" style="height:100px !important"> </a> <div class="media-body"> <h4 class="media-heading"><a href="www.example.com/page2">Page 2</a></h4> <p>...out morning is breakfast....</p> </div> </li> Warning: Undefined variable $query in /in/HnSED on line 35 Warning: Undefined variable $query in /in/HnSED on line 35 Warning: Undefined variable $query in /in/HnSED on line 35 Deprecated: strpos(): Passing null to parameter #2 ($needle) of type string is deprecated in /in/HnSED on line 35 Deprecated: str_replace(): Passing null to parameter #1 ($search) of type array|string is deprecated in /in/HnSED on line 35 <li class="media"> <a class="pull-left" href="www.example.com/page3"> <img class="media-object thumbnail" src="image3.jpg" style="height:100px !important"> </a> <div class="media-body"> <h4 class="media-heading"><a href="www.example.com/page3">Page 3</a></h4> <p>... are great ballpark food....</p> </div> </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:
62.85 ms | 409 KiB | 8 Q