[PHP] objects handling objects

2002-04-04 Thread Erik Price
I looked in the manual, but didn't see anything about this. I've read that PHP isn't a true object-oriented language, but rather simulates elements of object-oriented programming. Can I write a class that performs operations and manipulates objects? Can objects be placed into arrays etc?

Re: [PHP] objects handling objects

2002-04-04 Thread Steve Cayford
On Thursday, April 4, 2002, at 04:21 PM, Erik Price wrote: I looked in the manual, but didn't see anything about this. I've read that PHP isn't a true object-oriented language, but rather simulates elements of object-oriented programming. Can I write a class that performs operations

Re: [PHP] objects handling objects

2002-04-04 Thread Steve Cayford
Doh, typo: // this next line would generate a parse error // print(c:a1: . $c-echo($a)-method1() . br /\n); should read // this next line would generate a parse error // print(c:a1: . $c-echoMethod($a)-method1() . br /\n); On Thursday, April 4, 2002, at 05:25 PM, Steve Cayford wrote: