从文件路径字符串获取文件名

问题描述 投票:0回答:2

如何从像

Application6.docx
这样的字符串中获取
files/abcd/Application6.docx

简单来说,我只是想获取文件名及其扩展名

Application6.docx

注意:

files/abcd/
可以不同
ppt/file/
所以我不能使用替换
files/abcd/
的技巧。

php string path filenames string-parsing
2个回答
1
投票

您可以使用基本名称来获取您想要的内容。

$file = basename("files/abcd/Application6.docx");

0
投票

希望这有帮助:)

<?php
     $url = "http://test.com/beta/files_images/file.php";
     $keys = parse_url($url); // Parse the url
     $data = explode("/", $keys['path']); 
     $last = end($data); 
 ?>
© www.soinside.com 2019 - 2024. All rights reserved.