<!DOCTYPE html>
<meta charset="utf-8">
<?php
require_once 'Chatroom.php';
require_once 
'User.php';

$chatroom = new Chatroom();

$sasaki   = new User('佐々木');
$suzuki   = new User('鈴木');
$yoshida  = new User('吉田');
$kawamura = new User('川村');
$tajima   = new User('田島');

//Chatroomを介してメッセージのやりとりを行う
$chatroom->login($sasaki);
$chatroom->login($suzuki);
$chatroom->login($yoshida);
$chatroom->login($kawamura);
$chatroom->login($tajima);

$sasaki->sendMessage('鈴木''来週の予定は?');
$suzuki->sendMessage('佐々木''秘密です。');
$yoshida->sendMessage('萩原''元気ですか?');
$tajima->sendMessage('佐々木''お邪魔しています。');
$kawamura->sendMessage('吉田''私事ですが…。');