Add attribute to an object in PHP

前端 未结 3 1274
终归单人心
终归单人心 2021-01-03 17:49

How do you add an attribute to an Object in PHP?

3条回答
  •  悲&欢浪女
    2021-01-03 18:03

    Well, the general way to add arbitrary properties to an object is:

    $object->attributename = value;
    

    You can, much cleaner, pre-define attributes in your class (PHP 5+ specific, in PHP 4 you would use the old var $attributename)

    class baseclass
     { 
    
      public $attributename;   // can be set from outside
    
      private $attributename;  // can be set only from within this specific class
    
      protected $attributename;  // can be set only from within this class and 
                                 // inherited classes
    

    this is highly recommended, because you can also document the properties in your class definition.

    You can also define getter and setter methods that get called whenever you try to modify an object's property.

提交回复
热议问题