我有一个动态网址,例如:
"up/some_images/profile_image_15/200.png"
是否有可以给我路径的命令:
"up/some_images/"
答案 0 :(得分:3)
是的,请使用dirname()
$path = "up/some_images/profile_image_15/200.png"
$grandparentdir = dirname(dirname($path)); // "up/some_images"
如果您想要跟踪/
,则必须自行添加。
答案 1 :(得分:1)
试试这个dirname - 返回父目录的路径
<?php
print_r(pathinfo(pathinfo("up/some_images/profile_image_15/200.png")["dirname"])["dirname"]);