Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

declare property as object?

Tags:

oop

php

class

How do you declare a class property as an object?

I tried:

 public $objectname = new $Object();

But it didn't work. Additionally, why should you do it like that?

Isn't it better to just instantiate that object and just use its members?

like image 776
ajsie Avatar asked Feb 04 '10 20:02

ajsie


People also ask

How do you define an object property?

defineProperty() The static method Object. defineProperty() defines a new property directly on an object, or modifies an existing property on an object, and returns the object.

Can a function be declared as a property of an object?

yes, you can certainly assign properties to a function object from within the function.

How do you assign properties to objects?

To change a value of the existing property of an object, specify the object name followed by a square bracket, the name of the property you wish to change, an equals sign, and the new value you want to assign.

What is object property in JavaScript?

A JavaScript object has properties associated with it. A property of an object can be explained as a variable that is attached to the object. Object properties are basically the same as ordinary JavaScript variables, except for the attachment to objects.


3 Answers

From the PHP manual on class properties (emphasis mine):

Class member variables are called "properties". You may also see them referred to using other terms such as "attributes" or "fields", but for the purposes of this reference we will use "properties". They are defined by using one of the keywords public, protected, or private, followed by a normal variable declaration. This declaration may include an initialization, but this initialization must be a constant value --that is, it must be able to be evaluated at compile time and must not depend on run-time information in order to be evaluated.

Either create it inside the constructor (composition)

class Foo
{
    protected $bar;
    public function __construct()
    {
        $this->bar = new Bar;   
    }
}

or inject it in the constructor (aggregation)

class Foo
{
    protected $bar;
    public function __construct(Bar $bar)
    {
        $this->bar = $bar;   
    }
}

or use setter injection.

class Foo
{
    protected $bar;
    public function setBar(Bar $bar)
    {
        $this->bar = $bar
    }
}

You want to favor aggregation over composition.

like image 133
Gordon Avatar answered Nov 06 '22 06:11

Gordon


If you are just looking to instantiate to a generic class you can do:

$objectname = new stdClass;

I don't believe you can do this in the declaration of a property so you'd have to just declare $objectname and in the constructor set it to new stdClass.

like image 34
jhchen Avatar answered Nov 06 '22 05:11

jhchen


You can create a new class in constructer area then set it as new object.

class CampaignGroupsProperty
{
    public $id;
    public $name;
}



class GetCampaignGroupsResponse
{
    public $result;
    public $resultCode;

    public $campaignGroups;

    public function __construct()
    {
        $this->campaignGroups = new CampaignGroupsProperty();
    }
}

Then you can call it like

$response = new GetCampaignGroupsResponse();
$response->campaignGroups->id = 'whatever';
$response->result=true;
like image 36
Soysal Tan Avatar answered Nov 06 '22 06:11

Soysal Tan