© このドキュメントでは、 php中国語ネットマニュアル リリース
Properties of objects assigned from PHP can be referenced by specifying the property name after the '->' symbol.
Example 4-4. accessing object properties
name: {$person->name}<br> email: {$person->email}<br> OUTPUT: name: Zaphod Beeblebrox<br> email: zaphod@slartibartfast.com<br>