Assign value from one associative array of php into another array - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T21:40:33Z http://stackoverflow.com/feeds/question/702255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/702255/assign-value-from-one-associative-array-of-php-into-another-array 1 Assign value from one associative array of php into another array Syed Tayyab Ali 2009-03-31T17:54:23Z 2009-03-31T18:38:06Z <p>I have a variable <code>$params</code> which gets data from the database:</p> <pre><code>$params = mssql_fetch_array($result) </code></pre> <p>As far as I know, it is associative array. I want another array <code>$tempParams</code> to hold the value of this array. Can I assign it by using the following statement:</p> <pre><code>$tempParams = $params </code></pre> <p>In addition, do I need one single statement to declare and assign a value to $tempParams, or can these be separated?</p> <p>One more question I would like to ask is that following statement is correct; While $tempParams contains values;</p> <pre><code>$params['column1'] = $tempParams['newColumns'] </code></pre> http://stackoverflow.com/questions/702255/assign-value-from-one-associative-array-of-php-into-another-array/702292#702292 0 Answer by Seb for Assign value from one associative array of php into another array Seb 2009-03-31T18:00:43Z 2009-03-31T18:00:43Z <p>Yes you can, but that could cause some kind of aliasing if you're dealing with Objects (depending on which PHP version you're using).</p> <p>Why is it that you want to copy the array? Can't you work with the same original variable ($params)?</p> http://stackoverflow.com/questions/702255/assign-value-from-one-associative-array-of-php-into-another-array/702298#702298 5 Answer by Pim Jager for Assign value from one associative array of php into another array Pim Jager 2009-03-31T18:01:52Z 2009-03-31T18:01:52Z <p>Yes, </p> <pre><code>$tempParams = $params; </code></pre> <p>Will copy all values from $params to $tempParams.</p> <pre><code>$params['foo'] = 'bar'; echo $tempParams['foo']; //nothing $tempParams = $params; echo $tempParams['foo']; //'bar' $params['foo'] = 'hai'; echo $tempParams['foo']; //still: 'bar' </code></pre> http://stackoverflow.com/questions/702255/assign-value-from-one-associative-array-of-php-into-another-array/702331#702331 1 Answer by Peter Bailey for Assign value from one associative array of php into another array Peter Bailey 2009-03-31T18:07:18Z 2009-03-31T18:07:18Z <p>As far as whether or not your array is associative, read the documentation on <a href="http://us.php.net/mysql%5Ffetch%5Farray" rel="nofollow">mysql_fetch_array()</a></p> <p>As far as assignment goes, you actually can put it in one statement</p> <pre><code>$tempParams = $params = mysql_fetch_array( $result, MYSQL_ASSOC ); </code></pre> <p>This simple test shows that when you do an assignment like this, both variables are separate copies and not references.</p> <pre><code>$a = $b = array( 1, 2, 3 ); $b[1] = 'x'; echo '&lt;pre&gt;'; print_r( $a ); print_r( $b ); echo '&lt;/pre&gt;'; </code></pre> http://stackoverflow.com/questions/702255/assign-value-from-one-associative-array-of-php-into-another-array/702335#702335 1 Answer by Ilya Birman for Assign value from one associative array of php into another array Ilya Birman 2009-03-31T18:07:39Z 2009-03-31T18:07:39Z <p>Yes, the = operator will copy the array exactly.</p> <p>You can check yourself:</p> <pre><code>// get the $params from DB print_r ($params); // will output array contents $tempParams = $params; print_r ($tempParams); // must be the same as above </code></pre> <p>There’s no such thing as “declaring” variables in PHP, but if you wish to say that $tempParams is an array somewhere before assigning, you can do it like this:</p> <pre><code>$tempParams = array (); </code></pre> <p>This will make $tempParams an array with no elements inside.</p> http://stackoverflow.com/questions/702255/assign-value-from-one-associative-array-of-php-into-another-array/702477#702477 1 Answer by KOGI for Assign value from one associative array of php into another array KOGI 2009-03-31T18:38:06Z 2009-03-31T18:38:06Z <p>For arrays, numeric and associative, the = operator will make a copy of the variable. And both variables are completely independent of one another. However, when dealing with objects, the = operator creates a reference to the object, and both variables point to the exact same object.</p>