示例#1
0
			<div class="well">
				$params = [<br>
				&nbsp;&nbsp;\'opponent\' => \'Collier\',<br>
				&nbsp;&nbsp;\'location\' => \'Internet\',<br>
				&nbsp;&nbsp;\'outcome\'  => \'L\',<br>
				&nbsp;&nbsp;\'datetime\' => \'2015-12-07 12:00:00\',<br>
				];<br><br>
				$game = GameController::add($params);<br><br>
				$id = $game->id;<br>
				$game = GameController::display($id);<br>
			</div>
		';
        $params = ['opponent' => 'Collier', 'location' => 'Internet', 'outcome' => 'L', 'datetime' => '2015-12-07 12:00:00'];
        $game = GameController::add($params);
        $id = $game->id;
        $game = GameController::display($id);
        $test_data .= '<div class="bg-success pad">';
        foreach ($game as $key => $value) {
            $test_data .= $key . ' : ' . $value . '<br>';
        }
        $test_data .= '</div>';
        $test_data .= '<br>
			<p>Next, we\'ll edit the game we just added.</p>
			<div class="well">
				$game = new Game();<br><br>
				
				$params = [<br>
				&nbsp;&nbsp;\'opponent\' => \'John\',<br>
				&nbsp;&nbsp;\'location\' => \'Outside\',<br>
				&nbsp;&nbsp;\'outcome\'  => \'L\',<br>
				&nbsp;&nbsp;\'datetime\' => \'2015-12-07 10:00:00\',<br>