32 lines
825 B
PHP
32 lines
825 B
PHP
<?php
|
|
$images = ["rock.png", "paper.png", "scissors.png"];
|
|
$rules = [
|
|
0 => [0 => "Draw", 1 => "Loss", 2 => "Win"],
|
|
1 => [0 => "Win", 1 => "Draw", 2 => "Loss"],
|
|
2 => [0 => "Loss", 1 => "Win", 2 => "Draw"],
|
|
];
|
|
|
|
$playerChoice = filter_input(
|
|
INPUT_GET,
|
|
'choice',
|
|
FILTER_VALIDATE_INT,
|
|
['options' => ['min_range' => 0, 'max_range' => 2]]
|
|
);
|
|
|
|
$isPlaying = ($playerChoice !== null && $playerChoice !== false);
|
|
|
|
if ($isPlaying) {
|
|
$computerChoice = mt_rand(0, 2);
|
|
$message = $rules[$playerChoice][$computerChoice];
|
|
$class = $message;
|
|
$imagePlayer = $images[$playerChoice];
|
|
$imageComputer = $images[$computerChoice];
|
|
}
|
|
|
|
include_once './views/header.php';
|
|
if ($isPlaying) {
|
|
include_once './views/game.php';
|
|
include_once './views/message.php';
|
|
}
|
|
include_once './views/footer.php';
|