Programming Code Center(PCC)
[PHP]

(PCC)::[How-to-use-PHP-object-and-its-operations-in-php]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>

<?php
class Car {
    function Car() {
        $this->model = "VW";
    }
}
// create an object
$herbie = new Car();

// show object properties
echo $herbie->model;
?>

</body>
</html>

Output :

model = "VW"; } } // create an object $herbie = new Car(); // show object properties echo $herbie->model; ?>