<?php
class Product
{
public string $name;
public float $price;
public function __construct(string $name, float $price)
{
$this->name = $name;
$this->price = $price;
}
}
$book = new Product("PHP Handbook", 29.99);
echo $book->name . " costs " . $book->price; // PHP Handbook costs 29.99
?>