3v4l.org

run code in 300+ PHP versions simultaneously
<?php $con = file_get_contents('http://botd.wordpress.com/topsites-ta.xml/');/* Feed Url */ $title = getlinks("<title>", "</title>", $con); // gets Title and stored in array $url = getlinks("<link>", "</link>", $con); // gets Url and stored in array echo "<ul>"; for($i=0; $i < 6; $i++) { echo '<li><a href="'.$url[$i].'" title="'.$title[$i].'" >'.urldecode($title[$i]).'</a></li>'; } echo "</ul>"; function getlinks($s1,$s2,$s) { $myarray=array(); $s1 = strtolower($s1); $s2 = strtolower($s2); $L1 = strlen($s1); $L2 = strlen($s2); $scheck=strtolower($s); do { $pos1 = strpos($scheck,$s1); if($pos1!==false) { $pos2 = strpos(substr($scheck,$pos1+$L1),$s2); if($pos2!==false) { $myarray[]=substr($s,$pos1+$L1,$pos2); $s=substr($s,$pos1+$L1+$pos2+$L2); $scheck=strtolower($s); } } } while (($pos1!==false)and($pos2!==false)); return $myarray; } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo for botd.wordpress.com failed: System error in /in/h0VfS on line 3 Warning: file_get_contents(http://botd.wordpress.com/topsites-ta.xml/): Failed to open stream: php_network_getaddresses: getaddrinfo for botd.wordpress.com failed: System error in /in/h0VfS on line 3 <ul> Warning: Undefined array key 0 in /in/h0VfS on line 9 Warning: Undefined array key 0 in /in/h0VfS on line 9 Warning: Undefined array key 0 in /in/h0VfS on line 9 Deprecated: urldecode(): Passing null to parameter #1 ($string) of type string is deprecated in /in/h0VfS on line 9 <li><a href="" title="" ></a></li> Warning: Undefined array key 1 in /in/h0VfS on line 9 Warning: Undefined array key 1 in /in/h0VfS on line 9 Warning: Undefined array key 1 in /in/h0VfS on line 9 Deprecated: urldecode(): Passing null to parameter #1 ($string) of type string is deprecated in /in/h0VfS on line 9 <li><a href="" title="" ></a></li> Warning: Undefined array key 2 in /in/h0VfS on line 9 Warning: Undefined array key 2 in /in/h0VfS on line 9 Warning: Undefined array key 2 in /in/h0VfS on line 9 Deprecated: urldecode(): Passing null to parameter #1 ($string) of type string is deprecated in /in/h0VfS on line 9 <li><a href="" title="" ></a></li> Warning: Undefined array key 3 in /in/h0VfS on line 9 Warning: Undefined array key 3 in /in/h0VfS on line 9 Warning: Undefined array key 3 in /in/h0VfS on line 9 Deprecated: urldecode(): Passing null to parameter #1 ($string) of type string is deprecated in /in/h0VfS on line 9 <li><a href="" title="" ></a></li> Warning: Undefined array key 4 in /in/h0VfS on line 9 Warning: Undefined array key 4 in /in/h0VfS on line 9 Warning: Undefined array key 4 in /in/h0VfS on line 9 Deprecated: urldecode(): Passing null to parameter #1 ($string) of type string is deprecated in /in/h0VfS on line 9 <li><a href="" title="" ></a></li> Warning: Undefined array key 5 in /in/h0VfS on line 9 Warning: Undefined array key 5 in /in/h0VfS on line 9 Warning: Undefined array key 5 in /in/h0VfS on line 9 Deprecated: urldecode(): Passing null to parameter #1 ($string) of type string is deprecated in /in/h0VfS on line 9 <li><a href="" title="" ></a></li></ul>

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:
38.01 ms | 409 KiB | 8 Q