我有这个URL,并且我想删除此世界“ blog_images / ”之前的所有字符。
http://localhost/login/uploads/blog_images/woman4.jpg
我已经尝试过使用该PHP函数删除所有单词,但我也想删除该单词,我只需要获取此字符 woman4.jpg
strstr(http://localhost/login/uploads/blog_images/woman4.jpg, 'blog_images/');
答案 0 :(得分:1)
您可以使用 basename 函数 php
获取文件名<?php
/* $your_file_path_along_with_file_name is your input path */
$your_file_path_along_with_file_name = "http://localhost/login/uploads/blog_images/woman4.jpg";
$original_file_name = basename($your_file_path_along_with_file_name);
echo $original_file_name //it prints your file name
?>
答案 1 :(得分:-1)
您可以像这样使用爆炸
$ dat = explode('blog_images /','http://localhost/login/uploads/blog_images/woman4.jpg');
echo $ dat [1];