for copy&pasting around this is very practical, also with arrays:
<pre><code>
$moo =
[
a
, b
, d
];
// insert c
</pre></code>
better than having the delimiter at the end, where you a) have to take care where you relocate the last element and b) could forget to remove it at the last element (most language parsers tolerate that though).
<pre><code>
$moo =
[
];// insert c
</pre></code>
better than having the delimiter at the end, where you a) have to take care where you relocate the last element and b) could forget to remove it at the last element (most language parsers tolerate that though).