php object example
Example 1: php create object
$x = (object) [
'a' => 'test',
'b' => 'test2',
'c' => 'test3'
];
var_dump($x);
Example 2: php stdclass
$person=new stdClass();
$person->firstName="Chuck";
$person->lastName="Bartowski";
$person->age=27;
print_r($person);
Example 3: make a object php
$object = new stdClass();
$object->property = 'Here we go';
var_dump($object);
Example 4: object php
$object = (object) [
'propertyOne' => 'foo',
'propertyTwo' => 42,
];
Example 5: php object
$o= new \stdClass();
$o->a = 'new object';
OR
$o = (object) ['a' => 'new object'];
Example 6: oops concepts in php
The PHP Object-Oriented Programming concepts are:
Class
Objects
Inheritance
Interface
Abstraction
Magic Methods