Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
What does $$ mean in PHP?

I can't find documentation for this anywhere. You'd think it would be easy!

I came across this piece of code when reading through a webmail client framework (favourite pass time hobby) and i dont know what $$ means...

if (isset($_POST)){
while ( list($var, $val) = each($_POST) ) $$var = input_filter($var,$val);
}

Could somebody also explain basically what this does?

My interpretation is

if post is set
    loop until end of $_POST
        initialise each $_POST as a variable,
        filter variables
    end loop
end if
share|improve this question
1  
Don't do this. Instead do this: foreach($_POST as $key=>$val){ // blah} – Geekster Jan 13 '12 at 20:03

marked as duplicate by Michael Berkowski, eldarerathis, Keith Thompson, mario, the Tin Man Jan 13 '12 at 23:56

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

it's basically mimicing "register globals" for POST. $$var means take whatever $var evaluates to (it's a string) and make a variable of that name. So if $var is "email" then $$var is the same as $email.

share|improve this answer

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