From: Trans Date: 2007-05-26T12:23:31+09:00 Subject: Re: Global Array? On May 25, 11:11 pm, Sy Ys wrote: > I've got a class which calls itself several times (recursive). While > this class is calling itself, I want it to be appending a global array ( > << ). I can't figure out how to make the array itself global, so for now > each time the class calls itself, it creates the array anew again. Help? Have some code? Try: $a = [] T.