Get only filename from url in php without any variable values which exist in the url

前端 未结 12 718
北荒
北荒 2020-12-05 12:41

I want to get filename without any $_GET variable values from a URL in php?

My URL is http://learner.com/learningphp.php?lid=1348

I

12条回答
  •  情书的邮戳
    2020-12-05 13:31

    Use parse_url() as Pekka said:

    
    

    http://codepad.org/NBBf4yTB

    In this example the optional username and password aren't output!

提交回复
热议问题