<?php
class Dog {
    public $name;

    public function __construct($name) {
        $this->name = $name;
    }

    public function bark() {
        echo "Woof! My name is " . $this->name;
    }
}

$dog = new Dog("Rex");
$dog->bark(); // Output: Woof! My name is Rex
?>

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: