3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getExt($filename) { Echo $filename; if(!is_file($filename)) return ''; $n = strlen($filename); if($n<2) return ''; $non_ext = ''; $ext = ''; for($i=$n;$i--;$i>=1) { $c = $filename[$i]; if($c==='.') { $ext = '.'.$non_ext.$ext; $non_ext = ''; }else $non_ext = $c.$non_ext; } return $ext; } $filename = "asdfasdfasd.tar.gz"; $ext = getExt($filename); var_dump($ext);
Output for git.master, git.master_jit, rfc.property-hooks
asdfasdfasd.tar.gz Warning: is_file(): open_basedir restriction in effect. File(asdfasdfasd.tar.gz) is not within the allowed path(s): (/tmp:/in:/etc) in /in/2N3X2 on line 5 string(0) ""

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