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("a/b/c"));

preferences:
47.77 ms | 402 KiB | 5 Q