示例:
图片网址:
localhost/example/folder/filename.jpg
我想得到图像的路径所以它必须是:
localhost/example/folder/
怎么做?
我说英语不太好。谢谢! 的
我找到了一个解决方案,而不是使用dirname:
$image = 'localhost/example/folder/filename.jpg';
$directory = substr($image, 0, strrpos($image, '/', -2) + 1 );
echo $directory;
//return: localhost/example/folder/
答案 0 :(得分:7)
使用dirname()
<?php
echo dirname('localhost/example/folder/filename.jpg');
?>
答案 1 :(得分:6)