Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのようなことをしたい:
$myArray = array( '1' => array('2' => array('3' => 'Test')) ); $changeIt = $myArray['1']['2']['3']; $changeIt = 'Changed Test'; // $myArray['1']['2']['3'] is now "Changed Test"
これを行う方法はありますか?