Jump to content

Variable passed to each() is not an array or object


cyberdyne2

Recommended Posts

Variable passed to each() is not an array or object

 

Getting this error on the following lines. Can anyone tell me why please?

 

while(list($key,$value) = each($_FILES[images][type]))

while(list($key,$value) = each($_FILES[images][size]))

while(list($key,$value) = each($_FILES[images][name]))

 

Many thanks

Link to comment
Share on other sites

The error is pretty self explanatory. each expects an array or object, none of the arguments you are supplying are.

 

Try passing just:

$_FILES['images']

 

ps: Notice also that indexes are strings and string need to be surrounded by quotes.

Link to comment
Share on other sites

The error is pretty self explanatory. each expects an array or object, none of the arguments you are supplying are.

 

Try passing just:

$_FILES['images']

 

ps: Notice also that indexes are strings and string need to be surrounded by quotes.

 

Many thanks thorpe but unfortunately, your suggestion did not fix it and I'm still receiving the same error.  :confused:

 

The whole function is:

function checkType() {	
while(list($key,$value) = each($_FILES[images][type])){
	strtolower($value);
	if($value != "image/jpeg" AND  $value != "image/pjpeg" AND $value != "") {
		exit('Sorry , current format is <b>'.($value).'</b> ,only Jpeg or jpg are allowed.') ;
	}
}
checkSize();
}

Link to comment
Share on other sites

I don't think you read my previous reply.

 

Sorry thorpe, I did read it a number of times. The problem is, I didn't fully understand it.  :-\

 

function checkType() {
while("list($key,$value)" = each($_FILES['images']['type'])){
strtolower($value);
if($value != "image/jpeg" AND  $value != "image/pjpeg" AND $value != "") {
exit('Sorry , current format is <b>'.($value).'</b> ,only Jpeg or jpg are allowed.') ;
}
}
checkSize();
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.