@chagold אמר בregex ב-php:
http://php.net/manual/en/function.pathinfo.php
או כל נושא לחוד:
http://php.net/manual/en/function.dirname.php
http://php.net/manual/en/function.basename.php
אם אתה רוצה לממש לבד, או ע"י מציאת האינדקס האחרון של הסלש:
function SplitToNameAndPath($full){
$index = strrpos($full, '/');
return array(substr($full, 1, $index), substr($full, $index + 1));
}
או כמובן רגקס:
function SplitToNameAndPath($full){
preg_match('/(.+\/)([^\/]+)/', $full, $matches);
return $matches;
}