$fullpath = 'folderName/file.ext'; $folder = substr($fullpath, 0, strpos($fullpath, '/')); echo $folder; // Output => folderName
$str = 'Posted On April 6th By Some Dude'; echo strtok($str, 'By'); // Posted On April 6th