project3 Posted April 17, 2008 Share Posted April 17, 2008 I have some code to list files in a dir but i only want to list mp3s as there are image files in it too. heres the code i have it works but i want to only do mp3 extension. if (!is_dir("$dirpath/$file")) { $buildhtml .= "<option value=$file>$file</option>"; } } closedir($dlist); thanks in advance! Link to comment https://forums.phpfreaks.com/topic/101606-list-only-mp3s-in-a-folder/ Share on other sites More sharing options...
GingerRobot Posted April 17, 2008 Share Posted April 17, 2008 If you use the glob() function, you can specify a pattern for the file name to retrieve from a given directory: <?php foreach(glob('path/to/files/*.mp3') as $v ){ echo $v.'<br />'; } ?> Link to comment https://forums.phpfreaks.com/topic/101606-list-only-mp3s-in-a-folder/#findComment-519826 Share on other sites More sharing options...
project3 Posted April 17, 2008 Author Share Posted April 17, 2008 If you use the glob() function, you can specify a pattern for the file name to retrieve from a given directory: <?php foreach(glob('path/to/files/*.mp3') as $v ){ echo $v.'<br />'; } ?> thats prints out the path also i only need the file name. Link to comment https://forums.phpfreaks.com/topic/101606-list-only-mp3s-in-a-folder/#findComment-519837 Share on other sites More sharing options...
GingerRobot Posted April 17, 2008 Share Posted April 17, 2008 Use the basename() function: <?php foreach(glob('path/to/files/*.mp3') as $v ){ echo basename($v).'<br />'; } ?> If you don't want the extension either, then use basename($v,'.mp3') Link to comment https://forums.phpfreaks.com/topic/101606-list-only-mp3s-in-a-folder/#findComment-519842 Share on other sites More sharing options...
project3 Posted April 17, 2008 Author Share Posted April 17, 2008 Use the basename() function: <?php foreach(glob('path/to/files/*.mp3') as $v ){ echo basename($v).'<br />'; } ?> If you don't want the extension either, then use basename($v,'.mp3') Thanks worked perfect! Link to comment https://forums.phpfreaks.com/topic/101606-list-only-mp3s-in-a-folder/#findComment-519890 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.