duan2891 2011-12-16 14:21
浏览 103
已采纳

从PHP中的字符串中提取正则表达式的最后一个实例

I have a URL that is in the following structure: http://somewebsite.com/directory1/directory2/directory3...

I'm trying to get the last directory name from this url, but the depth of the url isn't always constant so i don't think i can use a simple substr or preg_match call - is there a function to get the last instance of a regular expression match from a string?

  • 写回答

2条回答 默认 最新

  • dongmaomou4117 2011-12-16 14:23
    关注

    Just use:

    basename( $url )
    

    It should have the desired effect

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?