3v4l.org

run code in 300+ PHP versions simultaneously
<?php $options = array_flip(['paper', 'rock', 'scissors']); $outcomes = ['draw', 'win', 'lose']; $cpuSelection = array_rand($options); $playerSelection = 'rock'; $difference = $options[$cpuSelection] - $options[$playerSelection]; var_export([ 'cpu' => $cpuSelection, 'human' => $playerSelection, 'outcome' => $outcomes[($difference + 3) % 3] ]);

preferences:
39.45 ms | 402 KiB | 5 Q