I need to set a variable = to an array element. $var = $ary[1]; does not work. ary[1]= "test". If that helps
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.
|
PHP arrays are zero indexed, that may be your problem
$var == "test" |
|||
|
|
|
confirm that your first initialize the array variable before using it like:
Try this:
must use |
|||
|
|
|
This is the way to set a variable with array elemen. why it is not working , please check your array content . |
|||
|
|
$var = $ary[1]is certainly a valid assignment. – John Flatness May 28 '11 at 5:37