read directory file extension

This is a discussion on read directory file extension within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Hi all, I've this script who can show me all the files (but .. and .) in a directory. Can I ...


Go Back   Usenet Forums > PHP Programming Forums > alt.comp.lang.php

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 03-25-2005
Davide
 
Posts: n/a
Default read directory file extension

Hi all, I've this script who can show me all the files (but .. and .) in a
directory.

Can I put the extension of the file show into a variabile?

really thanx!


<?php

$directory = "files";

$open_handle = opendir($directory);

while($read = readdir($open_handle)) {

if($read != "." && $read != "..") {

echo "$read";

}
}

closedir($open_handle);

?>


Reply With Quote
  #2 (permalink)  
Old 03-25-2005
Oli Filth
 
Posts: n/a
Default Re: read directory file extension

Davide wrote:
> Hi all, I've this script who can show me all the files (but .. and .) in a
> directory.
>
> Can I put the extension of the file show into a variabile?
>


http://php.net/pathinfo


--
Oli
Reply With Quote
  #3 (permalink)  
Old 03-25-2005
Davide
 
Posts: n/a
Default Re: read directory file extension

$ext = substr(strrchr($read, "."), 1);

GREAT :)
Thanx Oli


"Oli Filth" <catch@olifilth.co.uk> wrote in message
news:IPY0e.600$SM4.8@newsfe2-gui.ntli.net...
> Davide wrote:
>> Hi all, I've this script who can show me all the files (but .. and .) in
>> a directory.
>>
>> Can I put the extension of the file show into a variabile?
>>

>
> http://php.net/pathinfo
>
>
> --
> Oli



Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 08:45 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0