Skip to content

Instantly share code, notes, and snippets.

@Cynnah
Last active October 2, 2019 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cynnah/bdd5aa33ee496deba0f365b4e822208a to your computer and use it in GitHub Desktop.
Save Cynnah/bdd5aa33ee496deba0f365b4e822208a to your computer and use it in GitHub Desktop.
les conditions en php
<?php
$weapons = ['fists', 'whip', 'gun'];
$indyWeapon = "";
$opponentWeapon = $weapons[rand(0,2)];
switch ($opponentWeapon) {
case 'fists';
$indyWeapon = "gun";
break;
case 'whip';
$indyWeapon = "fists";
break;
case 'gun';
$indyWeapon = "whip";
break;
}
echo $indyWeapon;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment