Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
class Post {
private $webtourist;
public function __construct ($forumInstance) {
$this->webtourist = $forumInstance;
}
public function sayHappyBirthday($message) {
$message = htmlentities($message);
$this->webtourist->greet($message);
}
}
$forum = new WebTourist();
$post = new Post($forum);
$post->sayHappyBirthday('Честит рожден ден!');