mbvo Posted October 4, 2006 Share Posted October 4, 2006 I want a list of all the jpg and gif images in a particular directory, how do i do it? Link to comment https://forums.phpfreaks.com/topic/23014-file-listing/ Share on other sites More sharing options...
JaGeK Posted October 4, 2006 Share Posted October 4, 2006 [quote author=mbvo link=topic=110520.msg446868#msg446868 date=1159992721]I want a list of all the jpg and gif images in a particular directory, how do i do it?[/quote][code=php:0]<?php $pictures = glob($myDir.'*.{jpg,gif}', GLOB_BRACE); print_r($pictures);?>[/code] Link to comment https://forums.phpfreaks.com/topic/23014-file-listing/#findComment-103923 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.