Created
October 4, 2018 23:49
-
-
Save joaorobertopb/a339c8ee2996d4bbad00c09fb4b47fc9 to your computer and use it in GitHub Desktop.
Sempre que possível utilize constantes para representar valores fixos! E evite os números mágicos dessa forma.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
const GRUPO_ADMINISTRADOR = 10; | |
private function deveExecutar() | |
{ | |
$gruposAcesso = explode(',',$_SESSION['GRUPOSACESSO']); | |
if (in_array(self::GRUPO_ADMINISTRADOR, $gruposAcesso)) { | |
return true; | |
} | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment