1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
public function check_FormData($champs, $method=array(), $eMsg){
$this->champs = $champs;
$this->method = $method;
$this->eMsg = $eMsg;
//echo $this->champs.'<br>';
//echo $this->method.'<br>';
//echo $this->eMsg.'<br>';
if(is_array($this->method))
{
foreach($this->method as $km=>$vm)
{
// echo 'km: '.$km.' vm: '.$vm;
switch($km)
{
case 'min':
if(mb_strlen($_POST[$this->champs], 'utf-8') < $vm)
{
echo 'message erreur min: '.$this->eMsg.'<br>';
return FALSE;
}
else
{
return TRUE;
}
break;
case 'max':
if(mb_strlen($_POST[$this->champs], 'utf-8') > $vm)
{
echo 'message erreur max: '.$this->eMsg.'<br>';
return FALSE;
}
else
{
return TRUE;
}
break;
/*
case 'regex':
//echo $this->eMsg;
break;
*/
}
}
}
else
{
echo 'defaut de method';
}
} // end check fields
public function sendData() {
echo 'res check form data: <b>'.$this->check_FormData($champs, $method=array(), $eMsg).'</b><br>';
if(($this->check_FormData($champs, $method=array(), $eMsg)) === TRUE){
echo 'ouiiiiiiiiiiiiiiiiiiii Greatz';
} else {
echo 'nooooooooooooon';
}
}
// utilisation:
if(isset($_POST['Send'])){ //form_example
$f->check_FormData('MyName', array('min'=>5), 'message min');
$f->check_FormData('MyName', array('max'=>10), 'message max');
$f->check_FormData('MyName', array('regex'=>'[pattern]'), 'message regex');
echo $f->sendData();
} |
Partager