Skip to content

Instantly share code, notes, and snippets.

@ricardosiri68
Created January 2, 2015 00:13
Show Gist options
  • Select an option

  • Save ricardosiri68/99c31764dddbf3503fa8 to your computer and use it in GitHub Desktop.

Select an option

Save ricardosiri68/99c31764dddbf3503fa8 to your computer and use it in GitHub Desktop.
<?php
$notap = 88;
$notas_eval = array(
'Excelente!!!' => $notap <= 100,
'Muy Bien' => $notap >= 80,
'Esta Bien' => $notap >= 60,
'Te falta un poco' => $notap >= 40,
'No es suficiente' => $notap >= 30,
'Mal!!!' => $notap >= 20,
'Muy mal' => $notap < 20,
);
$nota = array_search(true, $notas_eval);
echo $nota;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment