Assign value from one associative array of php into another array - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T21:40:33Zhttp://stackoverflow.com/feeds/question/702255http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/702255/assign-value-from-one-associative-array-of-php-into-another-array1Assign value from one associative array of php into another arraySyed Tayyab Ali2009-03-31T17:54:23Z2009-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#7022920Answer by Seb for Assign value from one associative array of php into another arraySeb2009-03-31T18:00:43Z2009-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#7022985Answer by Pim Jager for Assign value from one associative array of php into another arrayPim Jager2009-03-31T18:01:52Z2009-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#7023311Answer by Peter Bailey for Assign value from one associative array of php into another arrayPeter Bailey2009-03-31T18:07:18Z2009-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 '<pre>';
print_r( $a );
print_r( $b );
echo '</pre>';
</code></pre>
http://stackoverflow.com/questions/702255/assign-value-from-one-associative-array-of-php-into-another-array/702335#7023351Answer by Ilya Birman for Assign value from one associative array of php into another arrayIlya Birman2009-03-31T18:07:39Z2009-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#7024771Answer by KOGI for Assign value from one associative array of php into another arrayKOGI2009-03-31T18:38:06Z2009-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>