Skip to content

Instantly share code, notes, and snippets.

@tadeubdev
Last active August 9, 2021 21:37
Show Gist options
  • Select an option

  • Save tadeubdev/8bbb72ecf5ea78d52976eb9d106f7c29 to your computer and use it in GitHub Desktop.

Select an option

Save tadeubdev/8bbb72ecf5ea78d52976eb9d106f7c29 to your computer and use it in GitHub Desktop.
<?php
$nome = "Luna";
$sobrenome = "Lovegood";
$casa = "Corvinal";
function checkTemAcesso(string $nome, string $sobrenome, string $case): bool {
// poderíamos colocar toda essa linha como retorno,
// só para ficar mais claro fiz assim :)
if ($nome === "Luna" && $sobrenome === "Lovegood" or $casa === "Corvinal") {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment