从 URL 字符串中获取基本名称子字符串

发布于 2024-09-12 11:00:00 字数 252 浏览 8 评论 0原文

我的数据库中有这个字符串 http://www.example.com/assets/ Image/......./image.jpg

并想清理它并制作它

image.jpg

如何获得从右侧开始直到第一个“/”的字符串部分?

I have this string in my db
http://www.example.com/assets/Image/......./image.jpg

and would like to clean it up and make it

image.jpg

How could I get the part of the string starting from the right until the first "/"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

嗼ふ静 2024-09-19 11:00:00
$url = "http://www.mydomain.com/assets/Image/......./image.jpg";
$filename = basename($url);
echo $filename;
$url = "http://www.mydomain.com/assets/Image/......./image.jpg";
$filename = basename($url);
echo $filename;
挖鼻大婶 2024-09-19 11:00:00

您可以使用基本名称函数。

basename('http://www.mydomain.com/assets/Image/......./image.jpg');

You can use the basename function.

basename('http://www.mydomain.com/assets/Image/......./image.jpg');
桜花祭 2024-09-19 11:00:00
 echo preg_replace('~.+/~', '', $url);

另请参见 parse_url、pathinfo

 echo preg_replace('~.+/~', '', $url);

see also parse_url, pathinfo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文