daGrevis Posted January 15, 2013 Report Share Posted January 15, 2013 Nekad es neesmu teicis, ka PHP var nebūt nesmuks. Quote Link to comment Share on other sites More sharing options...
indoom Posted January 15, 2013 Report Share Posted January 15, 2013 http://php.net/manual/en/language.references.whatdo.php'>Assign by reference $item = array('a'=>array('b'=>array('c'=>'none'))); $item2 =& $item['a']['b']['c']; $item2 = 'test'; echo $item['a']['b']['c']; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.