On Mon, 2008-02-18 at 21:09 -0600, Larry Garfield wrote: > On Monday 18 February 2008, Nick Stinemates wrote: > > > >> I have found, however, that if I ever need to return /multiple/ values, > > >> it's usually because of bad design and/or the lack of proper > > >> encapsulation. > > > > > > You mean you've never had a function like getCoordinates()? Or > > > getUsers(), or any other of a zillion perfectly valid and reasonable > > > functions that return multiple values as an array? Wow, how odd! > > > > > > Cheers, > > > Rob. > > > > getCoordinates() would return a Point object > > getUsers() would return a Group object... > > > > Not rocket science ;) > > I wouldn't consider an array of user objects to be "multiple things". I > consider it a single aggregate thing, and return arrays all the time. That's > conceptually different from wanting two separate return values from a > function, which is indeed conceptually icky. Yes, an aggregate is comprised of multiple things usually. Hence when decomposing the concept you are indeed returning multiple values-- both points of view are valid. If you receive a parcel of 100 pens. I can say, "has the parcel arrived yet" (one entity) or "have the pens arrived yet" (multiple entities). At any rate, the O.P. wanted to return multiple values called $x and $y. It seems quite reasonable to assume he was returning something akin to coordinates but didn't know how to do so by binding them in an aggregating structure such as an array, or if you wish, an object. Cheers, Rob. -- .------------------------------------------------------------. | InterJinn Application Framework - http://www.interjinn.com | :------------------------------------------------------------: | An application and templating framework for PHP. Boasting | | a powerful, scalable system for accessing system services | | such as forms, properties, sessions, and caches. InterJinn | | also provides an extremely flexible architecture for | | creating re-usable components quickly and easily. | `------------------------------------------------------------' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php