3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getXML($url) { $Proxy = getenv("HTTP_PROXY"); if (strlen($Proxy) > 1) { $r_default_context = stream_context_get_default(array('http' => array('proxy' => $Proxy,'request_fulluri' => True,),)); libxml_set_streams_context($r_default_context); } $daten = simplexml_load_file($url); return ($daten); } ini_set("user_agent","Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)"); ini_set("max_execution_time", 0); ini_set("memory_limit", "10000M"); //These are here to hold back any errors from a user agent sniffer, if applicable. //I only put these here as a precaution and to add things to my code to make it look //like I was doing something important. echo "\t\t\t\t\t",'<div class="row center">',PHP_EOL; //For bootstrap, to wrap the videos up in a row so they can be displayed properly $user = 'KazenRacing'; //Set the username for later use $xml = getXML("http://gdata.youtube.com/feeds/api/users/$user/uploads"); //Loads the users Youtube feed data $total = $xml->totalResults; //This will give you how many videos are available in the feed for ($i=0; $i < $total; $i++){ //For loop determining how many videos to display based on the $total $id = basename($xml->entry[$i]->id); //This gets the id for each video. $title = $xml->entry[$i]->title; //This will get the title for each video. $recorded = date('jS F, Y', strtotime($xml->entry[$i]->recorded)); //This will get the recorded time of each video and display it by Day Month, Year. If not set will display 31st December, 1969 $description= $xml->entry[$i]->content; //This will get the video description, if any. echo "\t\t\t\t\t\t", '<div class="col-md-3 col-sm-6 col-xs-9 yt-div">',PHP_EOL, "\t\t\t\t\t\t\t", '<div class="well well-sm text-center">',PHP_EOL, "\t\t\t\t\t\t\t\t", '<h4>'.$title.'</h4>',PHP_EOL, "\t\t\t\t\t\t\t\t", '<div class="caption">',PHP_EOL, "\t\t\t\t\t\t\t\t\t", '<h5>'.$recorded.'</h5>',PHP_EOL, "\t\t\t\t\t\t\t\t\t",'<a rel="Video Gallery" class="swipebox" href="//youtu.be/'.$id.'" title="'.$title.'">', PHP_EOL, "\t\t\t\t\t\t\t\t\t\t",'<img src="thumbs.php?src=http://img.youtube.com/vi/'.$id.'/mqdefault.jpg&w=256" class="img-responsive img-thumb center-block" alt="'.$title.'"></a>',PHP_EOL, "\t\t\t\t\t\t\t\t\t",'<h6 class="text-justify">'.$description.'</h6>',PHP_EOL, "\t\t\t\t\t\t\t\t",'<hr>',PHP_EOL,//"\t\t\t\t\t\t\t\t\t",'<a href="//youtu.be/'.$id.'" class="btn btn-info btn-outlined" role="button">View on Youtube</a>',PHP_EOL, "\t\t\t\t\t\t\t\t", '</div>',PHP_EOL, "\t\t\t\t\t\t", '</div>', PHP_EOL, "\t\t\t\t\t", '</div>',PHP_EOL; //This echo displays all the information we set before using the $id, $title, $recorded, and $description variables. if ($i % 4 == 3) { echo "\t\t\t\t\t",'</div>',PHP_EOL, "\t\t\t\t\t",'<div class="row">',PHP_EOL; } //This if statement makes sure there is a new row for every four videos. } echo "\t\t\t\t\t",'</div>',PHP_EOL; //And here is the closing tag for our row div. ?>
Output for 8.3.0 - 8.3.6
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo for gdata.youtube.com failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): Failed to open stream: php_network_getaddresses: getaddrinfo for gdata.youtube.com failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Warning: Attempt to read property "totalResults" on false in /in/702ZZ on line 26 </div>
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo for gdata.youtube.com failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): Failed to open stream: php_network_getaddresses: getaddrinfo for gdata.youtube.com failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Warning: Attempt to read property "totalResults" on bool in /in/702ZZ on line 26 </div>
Output for 8.0.13 - 8.0.30
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): Failed to open stream: php_network_getaddresses: getaddrinfo failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Warning: Attempt to read property "totalResults" on bool in /in/702ZZ on line 26 </div>
Output for 8.0.0 - 8.0.12
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): Failed to open stream: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in /in/702ZZ on line 10 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Warning: Attempt to read property "totalResults" on bool in /in/702ZZ on line 26 </div>
Output for 7.2.0 - 7.2.24, 7.3.0 - 7.3.12, 7.4.0, 7.4.27 - 7.4.33
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): failed to open stream: php_network_getaddresses: getaddrinfo failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Notice: Trying to get property 'totalResults' of non-object in /in/702ZZ on line 26 </div>
Output for 7.3.32 - 7.3.33, 7.4.26
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): failed to open stream: php_network_getaddresses: getaddrinfo failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 </div>
Output for 7.2.29 - 7.2.33, 7.3.16 - 7.3.31, 7.4.3 - 7.4.25
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): failed to open stream: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in /in/702ZZ on line 10 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Notice: Trying to get property 'totalResults' of non-object in /in/702ZZ on line 26 </div>
Output for 7.0.20, 7.1.5 - 7.1.33
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): failed to open stream: php_network_getaddresses: getaddrinfo failed: System error in /in/702ZZ on line 10 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Notice: Trying to get property of non-object in /in/702ZZ on line 26 </div>
Output for 5.2.6 - 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.28, 7.0.0 - 7.0.14, 7.1.0
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/702ZZ on line 10 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Notice: Trying to get property of non-object in /in/702ZZ on line 26 </div>
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.5
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): failed to open stream: Connection refused in /in/702ZZ on line 10 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Notice: Trying to get property of non-object in /in/702ZZ on line 26 </div>
Output for 5.0.3 - 5.0.5
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): failed to open stream: Connection refused in /in/702ZZ on line 10 Warning: connection refusedI/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Notice: Trying to get property of non-object in /in/702ZZ on line 26 </div>
Output for 5.0.2
<div class="row center"> Warning: simplexml_load_file(): php_network_getaddresses: gethostbyname failed in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): failed to open stream: Success in /in/702ZZ on line 10 Warning: connection refusedI/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Notice: Trying to get property of non-object in /in/702ZZ on line 26 </div>
Output for 5.0.1
<div class="row center"> Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/702ZZ on line 21 PHP_EOL Warning: simplexml_load_file(): php_network_getaddresses: gethostbyname failed in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): failed to open stream: Success in /in/702ZZ on line 10 Warning: connection refusedI/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Notice: Trying to get property of non-object in /in/702ZZ on line 26 </div> Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/702ZZ on line 51 PHP_EOL
Output for 5.0.0
<div class="row center"> Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/702ZZ on line 21 PHP_EOL Warning: simplexml_load_file(): php_network_getaddresses: gethostbyname failed in /in/702ZZ on line 10 Warning: simplexml_load_file(http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads): failed to open stream: Bad file descriptor in /in/702ZZ on line 10 Warning: connection refusedI/O warning : failed to load external entity "http://gdata.youtube.com/feeds/api/users/KazenRacing/uploads" in /in/702ZZ on line 10 Notice: Trying to get property of non-object in /in/702ZZ on line 26 </div> Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/702ZZ on line 51 PHP_EOL
Output for 4.4.5 - 4.4.9
<div class="row center"> Fatal error: Call to undefined function: simplexml_load_file() in /in/702ZZ on line 10
Process exited with code 255.
Output for 4.3.10 - 4.3.11, 4.4.0 - 4.4.4
<div class="row center"> Fatal error: Call to undefined function: simplexml_load_file() in /in/702ZZ on line 10
Process exited with code 255.
Output for 4.3.2 - 4.3.9
<div class="row center"> Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/702ZZ on line 21 PHP_EOL Fatal error: Call to undefined function: simplexml_load_file() in /in/702ZZ on line 10
Process exited with code 255.
Output for 4.3.0 - 4.3.1
<div class="row center"> Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/702ZZ on line 21 PHP_EOL Fatal error: Call to undefined function: simplexml_load_file() in /in/702ZZ on line 10

preferences:
225.49 ms | 402 KiB | 400 Q