3v4l.org

run code in 300+ PHP versions simultaneously
<?php $path = '/a/b/c/d/config.ini'; $matches = preg_split('/\/|\\\/', $path); $filename = $matches[count($matches) - 1]; if(strpos($filename, '.') !== -1) { list($name, $ext) = explode('.', $filename); unset($matches[count($matches) - 1]); } $path = implode(DIRECTORY_SEPARATOR, $matches); var_dump($path, $name, $ext);

preferences:
45.46 ms | 402 KiB | 5 Q