muckv Posted October 20, 2008 Share Posted October 20, 2008 I have some problems with displaying the contents of an array <?php $test= array(); $test=return_images(); for($i=-1;$i<count($test);$i++){ echo $test[$i]. '<br>'; } Output = the First element in the array (B2.jpg) print_r(return_images()); Give complete array output = Array ( [2] => B2.jpg [3] => akso.gif [4] => sample.jpg ) Why does the array start at the third element? Shouldn't it be Array ( [0] => B2.jpg [1] => akso.gif [2] => sample.jpg ) How to loop over it ? Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/ Share on other sites More sharing options...
Andy-H Posted October 20, 2008 Share Posted October 20, 2008 Can't you just use foreach($test as $img): echo $img . '<br>'; Endforeach; Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669858 Share on other sites More sharing options...
JasonLewis Posted October 20, 2008 Share Posted October 20, 2008 There is something wrong with return_images() function if the keys are starting at 2. And you shouldn't start the counter in a for() loop at -1. Not unless you have an element in your array that has a key of -1, which I would doubt since they start at 0. Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669867 Share on other sites More sharing options...
muckv Posted October 20, 2008 Author Share Posted October 20, 2008 Well this is the function function return_images() { $images = array(); $files = scandir('C:\wamp\www\IPTC\main\jan'); for($i = 0;$i < sizeof($files);$i++) { $ext = substr($files[$i], strrpos($files[$i], '.') + 1); if ($ext == 'jpg' || $ext == 'jpeg' || $ext == 'gif') { $images[$i] = $files[$i]; } } return $images; } Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669883 Share on other sites More sharing options...
JasonLewis Posted October 20, 2008 Share Posted October 20, 2008 Change this: $images[$i] = $files[$i]; To this: $images[] = $files[$i]; By defining $i in the square brackets you are giving it a key. If you provide nothing then it will start at 0 and count its way up. Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669889 Share on other sites More sharing options...
Andy-H Posted October 20, 2008 Share Posted October 20, 2008 $test = array(); <-- Un-necessary Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669891 Share on other sites More sharing options...
JasonLewis Posted October 20, 2008 Share Posted October 20, 2008 $test = array(); <-- Un-necessary In this instance yes, but it can be a habit for people to declare variables beforehand all the time. In this case, no matter what the return is it'll at least be an array. I admit to doing this sometimes as well. Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669896 Share on other sites More sharing options...
ghostdog74 Posted October 20, 2008 Share Posted October 20, 2008 Well this is the function function return_images() { $images = array(); $files = scandir('C:\wamp\www\IPTC\main\jan'); for($i = 0;$i < sizeof($files);$i++) { $ext = substr($files[$i], strrpos($files[$i], '.') + 1); if ($ext == 'jpg' || $ext == 'jpeg' || $ext == 'gif') { $images[$i] = $files[$i]; } } return $images; } that's because of your if{} statement inside the for loop. You only check for jpg|jpeg|gif but what about the rest? If the file is not jpg or jpeg or gif, the counter $i will get incremented as well, that's why your array index doesn't start at 1( or 0) but at 2. Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669904 Share on other sites More sharing options...
Andy-H Posted October 20, 2008 Share Posted October 20, 2008 Because he needs to narrow down to .jp(e)g and .gif formats... Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669912 Share on other sites More sharing options...
ghostdog74 Posted October 20, 2008 Share Posted October 20, 2008 he's initial question is why its starting at the third element. That's because the first few files are not what he wants AND the $i counter also increase. He need to somehow decrease(or remain?) the $i counter if a file is not what he wants. Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669931 Share on other sites More sharing options...
JasonLewis Posted October 20, 2008 Share Posted October 20, 2008 I've already answered the question, I believe. Removing $i will eliminate the count, since using [] will start at 0 and count up. Change this: $images[$i] = $files[$i]; To this: $images[] = $files[$i]; By defining $i in the square brackets you are giving it a key. If you provide nothing then it will start at 0 and count its way up. Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669939 Share on other sites More sharing options...
muckv Posted October 20, 2008 Author Share Posted October 20, 2008 thanks projectfear Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669949 Share on other sites More sharing options...
kenrbnsn Posted October 20, 2008 Share Posted October 20, 2008 I would use the glob() function here: <?php function return_images() { return(array_map('basename', glob('C:/wamp/www/IPTC/main/jan/*.{jpg,jpeg,gif}',GLOB_BRACE))); } ?> Note: untested. Ken Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669956 Share on other sites More sharing options...
prexep Posted October 20, 2008 Share Posted October 20, 2008 Or you can just use reset(). Quote Link to comment https://forums.phpfreaks.com/topic/129204-solved-looping-over-array/#findComment-669961 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.