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.
我有一个 PHP 数组数组。
我正在测试是否设置了索引。如果为 false,我想初始化给定的索引,使其为空集,例如:
if( !isset($_SESSION['temp'][$_POST['theindex']]) ){ $_SESSION['temp'][$_POST['theindex']]=array(); }
我是否必须隐式指定数组的结构,还是可以让它复制索引中其他数组的结构?
谢谢
恐怕没有数据就无法复制唯一的结构。 所以,如果你有一个空的引用数组——为什么不使用它来初始化呢?