3v4l.org

run code in 300+ PHP versions simultaneously
<?php function path_components($path) { $components = array(); while ($path != "." && $path != "/") { array_unshift($components, basename($path)); $path = dirname($path); } return $components; } var_dump(path_components("abc"));

preferences:
55.5 ms | 402 KiB | 5 Q