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?
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.
yes, you can certainly assign properties to a function object from within the function.
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.
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.
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.
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.
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;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With