gpt4 book ai didi

PHP获取图像的文件路径?

转载 作者:可可西里 更新时间:2023-11-01 13:11:16 25 4
gpt4 key购买 nike

例子:

图片地址:

localhost/example/folder/filename.jpg

我想获取图像的路径,所以它必须是:

localhost/example/folder/

怎么做?

我的英语说得不好。谢谢!

我找到了一个解决方案,而不是使用目录名:

$image = 'localhost/example/folder/filename.jpg';
$directory = substr($image, 0, strrpos($image, '/', -2) + 1 );
echo $directory;
//return: localhost/example/folder/

最佳答案

使用目录名()

<?php
echo dirname('localhost/example/folder/filename.jpg');
?>

关于PHP获取图像的文件路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16386350/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com