📌  相关文章
📜  php 删除字符后的所有内容 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:38.030000             🧑  作者: Mango

代码示例2
$fullpath = 'folderName/file.ext';
$folder = substr($fullpath, 0, strpos($fullpath, '/'));
echo $folder;
// Output => folderName