Files
archived-presentations/slides/advphp/objtips.xml
Rasmus Lerdorf d82c4db9ae Generalize slider code to get ready for multiple effects. Use
effect="slide" instead of slide="1" now in the bullet tag.
2002-07-26 07:13:53 +00:00

11 lines
655 B
XML

<slide title="Object Tips">
<list>
<bullet effect="slide">Objects in PHP are not references by default</bullet>
<bullet effect="slide">Objects are internally an array of properties and an array of methods</bullet>
<bullet effect="slide">Private methods should start with a '_' in order to denote their access levels.</bullet>
<bullet effect="slide">Inheritance can be used to share methods between multiple classes</bullet>
<bullet effect="slide">Overloading helps you facilitate lazy evaluation/lazy caching</bullet>
<bullet effect="slide">Aggregation helps facilitate creating dynamic interfaces which loads methods at runtime</bullet>
</list>
</slide>