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:20

    Your URL:

    $url = 'http://learner.com/learningphp.php?lid=1348';
    $file_name = basename(parse_url($url, PHP_URL_PATH));
    echo $file_name;
    

    output: learningphp.php

提交回复
热议问题