11. Write a function, as efficiently as possible, to remove the file's extension from a standard URL

Source: Internet
Author: User

//First list the URLs that need to be manipulated
     $url _path = "http://www.sina.com.cn/abc/de/fg.php?id=1";
     method One:
    //Take out extension and parameters
     $temp = PathInfo ($ Url_path,pathinfo_extension);
    //Find extension
     $temp = Explode ("?", $temp)
      echo $temp [0];
    //Method Two:
    //decomposes the URL path, removing only the information after the directory
     $temp = Parse_url ($url _path);
     $path = $temp [' path '];
    //Then borrow PathInfo to remove the extension directly
     echo pathinfo ($path, Patainfo_ EXTENSION);
    //Method Three:
    //Remove file name directly
     $temp = PathInfo ($url _path,pathinfo_basename);
    //Remove extension
     $temp = Explode (".", $temp)
      echo $temp [0];

11. Write a function that extracts the file's extension from a standard URL as efficiently as possible

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.