如何从像
Application6.docx
这样的字符串中获取 files/abcd/Application6.docx
?
简单来说,我只是想获取文件名及其扩展名
Application6.docx
。
注意:
files/abcd/
可以不同ppt/file/
所以我不能使用替换files/abcd/
的技巧。
您可以使用基本名称来获取您想要的内容。
$file = basename("files/abcd/Application6.docx");
希望这有帮助:)
<?php
$url = "http://test.com/beta/files_images/file.php";
$keys = parse_url($url); // Parse the url
$data = explode("/", $keys['path']);
$last = end($data);
?>