vote up 0 vote down star

I have a pretty high traffic social network site,
I would like to get into the habit of unsetting large array and mysql object and even some string variables.

So is it possible to unset more then 1 item in PHP

example:

<?PHP

unset($var1);

// could be like

unset($var1,$var2,$var3);

?>
flag

3 Answers

vote up 5 vote down check

Yes.

Your example will work just as you imagine. The method signature for unset() is as follows:

void unset ( mixed $var [, mixed $var [, mixed $... ]] )
link|flag
1  
I think I liked my answer better when it was just 'Yes.' – jason Aug 14 at 2:39
Yes I actually did look there, I must of overlooked this part though – jasondavis Aug 14 at 2:44
+1 for beating me to the first answer – Jefe Aug 14 at 3:17
vote up 2 vote down

Yes, see the PHP manual, Example 1:

http://us2.php.net/manual/en/function.unset.php

link|flag
vote up 6 vote down

The PHP manual can be very handy. You can search for any built-in function and get a pretty detailed description of what that function does, etc. And the answer is yes, you can supply unset with as many variables as you want.

link|flag
2  
+1 for explaining the manual :) – Jefe Aug 14 at 2:52
Jefe, +1 for being awesome. – jason Aug 14 at 2:55
@jason thanks even though you're the amazing one, by answering first :) – Jefe Aug 14 at 3:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.