Classes and Objects in OOP in PHP
OOP classes are declared using the
keyword class
.
Let's create a class for example,
describing some users:
<?php
class User {
}
?>
Using the new
command, you can create
an object of this class:
<?php
$user = new User;
?>
You can output the created object to the screen:
<?php
var_dump($user);
?>
Create a Employee
class.
Create an object of the Employee
class
and output it to the screen.