3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getExt($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); Var_dump(explode(".", $filename, 2)[1]);
Output for git.master, git.master_jit, rfc.property-hooks
string(7) ".tar.gz" string(6) "tar.gz"

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