close
http://www.perlmonks.org/?node_id=517176
$array = \(); doesn't create a reference to an empty array. You probably want $array = [];
\() creates individual references to each entity inside of the ().
Since there is no entity inside of your (), no reference is created.
[] is the anonymous array constructor. That's what you're looking for.
$array = [];
全站熱搜
留言列表