Squelette fonction checkParam
This commit is contained in:
parent
6cd8bebe8c
commit
db8ef4766d
|
@ -98,4 +98,36 @@
|
|||
$_SESSION['droits'] = array();
|
||||
}
|
||||
}session_init();
|
||||
|
||||
|
||||
/* [2] GESTION DES PARAMÈTRES
|
||||
============================================================*/
|
||||
|
||||
/** Vérifie le bon format, le bon type, ainsi que la bonne valeur des variables envoyées
|
||||
*
|
||||
* @param $tabVar tableau contenant l'ensemble des variables a vérifiées
|
||||
* @param $tabForm tableau contenant l'ensemble des formats attendus
|
||||
*
|
||||
* @return <String> 'success' si variables bonnes / 'error' sinon
|
||||
*/
|
||||
|
||||
function checkParam($tabVar,$tabForm) {
|
||||
|
||||
var $checker;
|
||||
|
||||
if(isset(tabVar) && isset(tabForm)) {
|
||||
|
||||
foreach ($tabVar as $type => $value) {
|
||||
foreach ($value as $variable) {
|
||||
// $checker =
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
else {
|
||||
|
||||
return 'missing parameters';
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue