Sınıflar ve Nesnelerin Temelleri
class Person {
public $name;
public $age;
function __construct($name, $age) {
$this->name = $name;
$this->age = $age;
}
function introduce() {
echo "My name is " . $this->name . " and I am " . $this->age . " years old.";
}
}$person = new Person("John", 30);
$person->introduce(); // Output: My name is John and I am 30 years old.Last updated