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.

How to add element to exist array? I have array:

Array ( [0] => Array ( [user_id] => 1 [user_login] => Saibamen [user_password] => 4028a0e356acc947fcd2bfshfh3w26gdshhbf00cef11e128d484a [user_email] => teeeest@test.pl [user_active] => 1 [user_last_login_ip] => 127.0.0.1 [user_perms] => ) )

I want add 'avatar' parametr to this array:

$avatar = md5($array_in_this_question[0]['user_email'])
share|improve this question

3 Answers

up vote 0 down vote accepted

Well you'd need to assign the array to a variable for a start, so:

$theArray = Array ( [0] => Array ( [user_id] => 1 [user_login] => Saibamen [user_password] => 4028a0e356acc947fcd2bfshfh3w26gdshhbf00cef11e128d484a [user_email] => teeeest@test.pl [user_active] => 1 [user_last_login_ip] => 127.0.0.1 [user_perms] => ) );
$theArray[0]['avatar'] = md5($array_in_this_question[0]['user_email']);

is what you want I guess

share|improve this answer

You add value the same way as when you read a value: By using its key(s)

$array_in_this_question[0]['avatar'] = md5($array_in_this_question[0]['user_email']);
share|improve this answer

Simply make

$array[0]['avatar'] = $avatar
share|improve this answer
This would add the value to the outer hash, not the internal one (which he probably wants). – tafoo85 Aug 23 '11 at 20:29

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.