Postcode checker
Auteur: advertentiep - 13 mei 2016 - 09:32 - Gekeurd door: Thomas - Hits: 7500 - Aantal punten: (0 stemmen)
Niet heel veel uitleg vereist denk ik.
|
Code: |
function is_postcode ($sInvoer)
{
return (preg_match('/^[0-9]{4}\s?[a-z]{2}$/i', $sInvoer) === 1);
}
$aTest = array('120 SH', '1200 SH', '0000 aa', '12 sf', '1000AAA', '100');
for ($i = 0; $i < count($aTest); $i++)
{
if (is_postcode($aTest[$i]))
{
echo 'OK <br />';
}
else
{
echo 'niet ok!<br />';
}
}
function is_postcode ($sInvoer) { return (preg_match('/^[0-9]{4}\s?[a-z]{2}$/i', $sInvoer) === 1); } $aTest = array('120 SH', '1200 SH', '0000 aa', '12 sf', '1000AAA', '100'); for ($i = 0; $i < count($aTest); $i++) { if (is_postcode($aTest[$i])) { } else { } }
output:
niet ok!
OK
OK
niet ok!
niet ok!
niet ok!
niet ok! OK OK niet ok! niet ok! niet ok!
Download code (.txt)
|
|
Stemmen |
Niet ingelogd. |
|