Source Code:
(back to article)
<?php class Person { public $name; public $age; public function __construct($name, $age) { $this->name = $name; $this->age = $age; } public function sayHello() { return "Hallo, mein Name ist " . $this->name . " und ich bin " . $this->age . " Jahre alt."; } } $person = new Person("John", 30); echo $person->name; // Gibt "John" aus echo "\r\n"; echo $person->sayHello(); // Gibt "Hallo, mein Name ist John und ich bin 30 Jahre alt." aus
Result:
Report an issue