appendByRef() — 引用追加

    说明

    在PHP5中,appendByRef()在大部分时候都是没有必要的。只当你希望在模板中可以修改某个PHP数组的值,才有可能会使用到,当然更好的方法是通过传递对象、改变对象的成员变量来达到目的。

    Technical Note

    The merge parameter respects array keys, so if you merge two numerically indexed arrays, they may overwrite each other or result in non-sequential keys. This is unlike the PHP array_merge() function which wipes out numerical keys and renumbers them.

    参见 , assign() 和 .