标签: php
当我们拥有关联数组值时,我们可以通过这种方式回显
<?php echo $arr1[$arr2[1]]; ?>
Objective数组的正确语法是什么?我试过了,它不起作用
<?php echo $arr1->{{$arr2[1]}}; // This is not the correct syntax ?>
Objective数组的正确语法是什么?