[Solved] Parse a string in php


Use PHP’s pathinfo() function:

http://php.net/manual/en/function.pathinfo.php

$info = pathinfo('items/category/test.txt');
$dirPath = $info['dirname'];

// OR

$dirPath = pathinfo('items/category/test.txt', PATHINFO_DIRNAME);

// Output: items/category

solved Parse a string in php