从 URL 字符串中获取基本名称子字符串
我的数据库中有这个字符串 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用基本名称函数。
You can use the basename function.
另请参见 parse_url、pathinfo
see also parse_url, pathinfo