remove \t from the end of a string php code example
Example 1: php remove everything after character
$fullpath = 'folderName/file.ext';
$folder = substr($fullpath, 0, strpos($fullpath, '/'));
echo $folder;
// Output => folderName
Example 2: remove space from start and end of string in php
$trimmed = trim($text);
var_dump($trimmed);