name = $name;
}
public function greet() {
return “Hello, ” . $this->name;
}
}
$person = new Person(“Alice”);
echo $person->greet(); // Outputs: Hello, Alice
?>
name = $name;
}
public function greet() {
return “Hello, ” . $this->name;
}
}
$person = new Person(“Alice”);
echo $person->greet(); // Outputs: Hello, Alice
?>
No images uploaded for this post.
No videos uploaded for this post.