duankuang7928 2014-03-30 17:10
浏览 40
已采纳

从给定的URL获取文件名部分

I have a URL like below:

http://abc.def.com/gh-tqa/name-of-the-file/ZW607CCF.html

Now I want to get the string of ZW607CCF without .html.

How can I achieve this using PHP?

  • 写回答

3条回答 默认 最新

  • drxv39706 2014-03-30 17:12
    关注

    You don't need a regex here. Just use pathinfo():

    $url = 'http://abc.def.com/gh-tqa/name-of-the-file/ZW607CCF.html';
    $filename = pathinfo($url, PATHINFO_FILENAME);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?