3v4l.org

run code in 300+ PHP versions simultaneously
<?php $finfo = new finfo(FILEINFO_MIME_TYPE); $postMimeType = $finfo->buffer(file_get_contents('http://img1.wikia.nocookie.net/__cb20130830065058/cardfight/images/7/7a/Smiley-face-1600x1200-wallpaper-775678.jpg')); // If the URL has the file extension included, this will find it $fileExtension = pathinfo('http://img1.wikia.nocookie.net/__cb20130830065058/cardfight/images/7/7a/Smiley-face-1600x1200-wallpaper-775678.jpg', PATHINFO_EXTENSION); // Otherwise, get file extension from the MIME type // This is necessary for image thumbnails to display correctly in the WordPress dashboard media section if ($fileExtension === '') { $fileExtension = basename($postMimeType); $filename = $filename . '.' . $fileExtension; } var_dump($fileExtension);
Output for git.master, git.master_jit, rfc.property-hooks
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo for img1.wikia.nocookie.net failed: System error in /in/ppk7G on line 4 Warning: file_get_contents(http://img1.wikia.nocookie.net/__cb20130830065058/cardfight/images/7/7a/Smiley-face-1600x1200-wallpaper-775678.jpg): Failed to open stream: php_network_getaddresses: getaddrinfo for img1.wikia.nocookie.net failed: System error in /in/ppk7G on line 4 string(3) "jpg"

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:
44.17 ms | 402 KiB | 8 Q