[PHP] Getting The Extension Of A File
welcome to Game-Tuts.com - Register
Results 1 to 4 of 4
  1. #1
    Web Designer & Developer
    Join Date
    Oct 2009
    Location
    Leeds, England
    Age
    20
    Posts
    1,508
    Thanks
    386

    Default [PHP] Getting The Extension Of A File

    Just thought I'd share this very quickly. Works nicely when verifying file types.

    The following would display the extension, "bar" from the filename, "TheFileName.foo.bar"

    PHP Code:
    <?php

    //Replace with subject filename
    $fName "TheFileName.foo.bar";

    //Splits up the filename
    $fNameExp explode("."$fName);

    //How many parts?
    $fNameCount count($fNameExp);

    //Get the last bit
    $fExt $fNameExp[$fNameCount-1];

    echo(
    $fExt);

    ?>
    Last edited by Jordan; 11-27-2010 at 02:03 PM.

  2. The Following 2 Users Say Thank You to Jordan For This Useful Post:

    Brandon (01-21-2011), Skull Kid (11-27-2010)

  3. #2
    VIP
    Join Date
    Nov 2009
    Posts
    2,366
    Thanks
    64

    Default Re: [PHP] Getting The Extension Of A File

    Thanks for the Help Jordan. It can help on later work. Thanks again.

  4. #3
    That Guy You Know


    Join Date
    Jul 2010
    Posts
    5,235
    Thanks
    2056

    Default Re: [PHP] Getting The Extension Of A File

    thx for the post

    I will answer any and all questions regarding my big toe.

  5. #4
    Official Grapist
    Join Date
    Jul 2010
    Location
    !↨ ↨ΦΘΘB7▐♂▬!*▀
    Age
    19
    Posts
    3,284
    Thanks
    719
    Gamertag
    Crazzzme

    Default Re: [PHP] Getting The Extension Of A File

    thats very efficient looking and seems very straight forward good post
    Press thanks if i helped you
    and If i helped you dont be a little ass and not thank me.


 

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
visit GameTuts on these social networking sites