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.

I'm trying to use dynamic variable names (I'm not sure what they're actually called. But pretty much this

for($i=0;$i<=2;$i++){
$("file".$i) = file($filelist[$i]);
}

var_dump($file0);

This is coming up null which tells me it's not working. I have no idea what the syntax or the technique I'm looking for is here, which makes it hard to research. Filelist is defined earlier on.

Thanks

share|improve this question
2  
Don't! There is never a good reason to use them. They are, effectively, just an untidy array. Use a proper array instead. – Quentin Feb 13 '12 at 8:37
Thanks, I did not know I was supposed to accept answers. This structure is all new to me, I'm not familiar with the voting and the accepted answers......what's the difference between voting and accepted answer?? Seems to me that voting should determine what the best answer is. – user1159454 Feb 13 '12 at 8:51
@user1159454: Yes you are right, voting up means someone has answered it right. And when you accept answers, your accept rate improves. You can see your current accept rate is 20% (below your name above) which was previously 0%. When you have 0% accept rate, people will avoid answering to your question because they will feel this guy will not accept our answers. You should always accept answers when you feel it answers your question. – Sarfraz Feb 13 '12 at 8:54
Alright I'm sorry, I just went back and picked an answer for each question I've asked so far. Good thing it's only 7 :P – user1159454 Feb 13 '12 at 8:56
And Quentin, why are they bad practice?? There must be a reason they exist alongside arrays I'd think – user1159454 Feb 13 '12 at 8:57
show 1 more comment

3 Answers

up vote 30 down vote accepted

Wrap them in {}:

${"file" . $i} = file($filelist[$i]);

Working Example


Using ${} is a way to create dynamic variables, simple example:

${'a' . 'b'} = 'hello there';
echo $ab; // hello there
share|improve this answer

Try using {} instead of ():

${"file".$i} = file($filelist[$i]);
share|improve this answer

I do this quite often on results returned from a query..

e.g.

// $MyQueryResult is an array of results from a query

foreach ($MyQueryResult as $key=>$value)
{
   ${$key}=$value;
}

Now I can just use $MyFieldname (which is easier in echo statements etc) rather than $MyQueryResult['MyFieldname']

Yep, it's probably lazy, but I've never had any problems.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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