In php 5, all variable and objects are passed by reference, but i can't get my codes work
My codes is:
$arrayA = array();
$array = $arrayA;
...
if(!in_array(thedata, $array)
$array[] = thedata;
var_dump($arrayA);
The result is empty, am i missing something simple?
<?php
$arrayA = array();
$arrayB =& $arrayA;
$arrayB = array(1,2,3);
var_dump($arrayA);
Read more here:
http://php.net/manual/en/language.types.array.php (Search for Reference)
http://www.php.net/manual/en/language.references.php
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With