Input validation with filter functions

Introduction
Although PHP has a lot of filter functions available, I found that still to many people are using (often incorrect) regular expressions to validate user input. The filter extension is simple, standard available and will fulfill the common validations. Below some pratical examples and things to consider when working with PHP filter functions.

Which are available?
Below a shameless copy paste of the PHP documentation.

  • filter_has_var — Checks if variable of specified type exists
  • filter_id — Returns the filter ID belonging to a named filter
  • filter_input_array — Gets external variables and optionally filters them
  • filter_input — Gets a specific external variable by name and optionally filters it
  • filter_list — Returns a list of all supported filters
  • filter_var_array — Gets multiple variables and optionally filters them
  • filter_var — Filters a variable with a specified filter

Pratical use

Sanitizing
“Filter input escape output” every developer knows this but it is a repetitive job but with the filter extension filterering input became a lot easier. When you correctly filter input you drastically lower the change of application vulnerabilities.

Sanitizing a single variable

$sText = ' ';
$sText = filter_var($sText, FILTER_SANITIZE_STRING);
echo $sText; // This is a comment from a alert("scriptkiddie");

Sanitizing multiple variables, same principle as above but with an array, the filter will sanitize all values inside the array

filter_var_array($_POST, FILTER_SANITIZE_STRING);

Validating an email address

if(filter_var($sEmail, FILTER_VALIDATE_EMAIL) === false) {
     $this->addError('Invalid email address', $sEmail);
}

Validation a complete array
Validating all your data at once with a single filter will make your code clear, all in one place and is more easy to maintain an example below.

$aData = array(
	'student'	=> 'Sjoerd Maessen',
	'class'		=> '21',
	'grades' => array(
			'math' => 9,
			'geography' => 66,
			'gymnastics' => 7.5
	)
);

$aValidation = array(
	'student'	=> FILTER_SANITIZE_STRING,
	'class'		=> FILTER_VALIDATE_INT,
	'grades'	=> array(
				'filter' => FILTER_VALIDATE_INT,
				'flags'	 => FILTER_FORCE_ARRAY,
				'options'=> array('min_range'=>0, 'max_range'=>10))
);

echo '
';
var_dump(filter_var_array($aData, $aValidation));

/*array(3) {
  ["student"]=>
  string(14) "Sjoerd Maessen"
  ["class"]=>
  int(21) // Thats strange, my string is converted
  ["grades"]=>
  array(3) {
    ["math"]=>
    int(9)
    ["geography"]=>
    bool(false) // 66 is > 10
    ["gymnastics"]=>
    bool(false) // 7.5 is not an int
  }
}*/

Note: okay I did not expect that the string '21' would validate true against FILTER_VALIDATE_INT, after some more testing I also noticed that min_range and max_range only work with FILTER_VALIDATE_INT, when using floats or scalars the options are just ignored, so be aware!

The sanitizing examples above can be made easily more restrictive by adding flags like FILTER_FLAG_STRIP_LOW to the sanitize filter, FILTER_FLAG_STRIP_LOW will for example strip all characters that have a numerical value below 32.

Things to consider
Although the filter functions are some time available some of them aren't flawless, at some points the documentation is missing or very unclear. Another example is the filter_var validation for IPv6 addresses. (see bug report #50117). So it is always a good thing to check if the filter is really doing what you expect it does. Write testcases before using. If you use it correctly you can write your validations in the blink of an eye, and this extension will be your new best friend.

Links
Filter functions
Filter flags

Comments

696 responses to “Input validation with filter functions”

  1. cyberknightex1zef Avatar
    cyberknightex1zef

    J’adore l’ambiance electrisante de Belgium Casino, c’est une plateforme qui pulse avec energie. Il y a un eventail de titres captivants, incluant des options de paris sportifs dynamiques. 100% jusqu’a 500 € avec des free spins. Le service client est de qualite. Les paiements sont surs et fluides, par contre des offres plus consequentes seraient parfaites. Au final, Belgium Casino est une plateforme qui pulse. Pour couronner le tout la navigation est simple et intuitive, incite a prolonger le plaisir. Egalement genial les tournois reguliers pour s’amuser, qui motive les joueurs.
    Poursuivre la lecture|

  2. roguekingar4zef Avatar
    roguekingar4zef

    J’ai un faible pour Betway Casino, ca offre une experience immersive. Les titres proposes sont d’une richesse folle, offrant des tables live interactives. 100% jusqu’a 500 € plus des tours gratuits. Le suivi est toujours au top. Les paiements sont surs et fluides, mais encore quelques tours gratuits supplementaires seraient cool. En fin de compte, Betway Casino merite une visite dynamique. Par ailleurs le design est moderne et attrayant, apporte une energie supplementaire. Un point cle les evenements communautaires engageants, propose des avantages sur mesure.
    AccГ©der au site|

  3. JasonNergo Avatar
    JasonNergo

    apotek online sverige: Köp medicin utan recept Sverige – Tryggt apotek utan recept

  4. citynerdix1zef Avatar
    citynerdix1zef

    Je suis epate par Betify Casino, on y trouve une energie contagieuse. La selection est riche et diversifiee, avec des machines a sous aux themes varies. Le bonus initial est super. Le suivi est d’une precision remarquable. Les paiements sont surs et fluides, a l’occasion des recompenses supplementaires dynamiseraient le tout. Au final, Betify Casino garantit un plaisir constant. De plus la plateforme est visuellement dynamique, incite a prolonger le plaisir. A souligner le programme VIP avec des privileges speciaux, cree une communaute vibrante.
    AccГ©der au site|

  5. StephenLib Avatar
    StephenLib

    apotek på nett RabattApotek Hvilket apotek på nett er best i Norge

  6. NerdTigeran6zef Avatar
    NerdTigeran6zef

    Je suis enthousiasme par Betify Casino, ca invite a l’aventure. La selection de jeux est impressionnante, incluant des paris sportifs pleins de vie. Il propulse votre jeu des le debut. Le suivi est d’une fiabilite exemplaire. Les retraits sont simples et rapides, malgre tout plus de promotions frequentes boosteraient l’experience. Au final, Betify Casino merite une visite dynamique. A mentionner le site est rapide et engageant, ajoute une touche de dynamisme. Un atout les tournois frequents pour l’adrenaline, qui motive les joueurs.
    Commencer ici|

  7. Williamseelo Avatar
    Williamseelo

    KortingApotheek: online apotheek – Korting Apotheek

  8. JasonNergo Avatar
    JasonNergo

    cheap branded meds without prescription: Mex Meds Review – buy medications from Mexico legally

  9. JosephCit Avatar
    JosephCit

    https://tryggapotekguiden.xyz/# Apotek online jamforelse

  10. GeorgeAlila Avatar
    GeorgeAlila

    http://tryggapotekguiden.com/# Köp medicin utan recept Sverige

  11. 6may-569 Avatar

    Строительный портал https://6may.org новости отрасли, нормативы и СНИП, сметы и калькуляторы, BIM-гайды, тендеры и вакансии. Каталоги материалов и техники, база подрядчиков, кейсы и инструкции. Всё для проектирования, строительства и ремонта.

  12. artpaint-467 Avatar

    Всё для стройки https://artpaint.com.ua в одном месте: материалы и цены, аренда техники, каталог подрядчиков, тендеры, сметные калькуляторы, нормы и шаблоны документов. Реальные кейсы, обзоры, инструкции и новости строительного рынка.

  13. novosti24-944 Avatar

    Новостной портал https://novosti24.com.ua с фокусом на важное: оперативные репортажи, аналитика, интервью и факты без шума. Политика, экономика, технологии, культура и спорт. Удобная навигация, персональные ленты, уведомления и проверенные источники каждый день.

  14. GeorgeAlila Avatar
    GeorgeAlila

    https://rabattapotek.com/# Hvilket apotek på nett er best i Norge

  15. Williamseelo Avatar
    Williamseelo

    Tryggt apotek utan recept: Basta natapotek 2025 – Kop medicin utan recept Sverige

  16. StephenLib Avatar
    StephenLib

    Medicijnen zonder recept bestellen online apotheek nederland Medicijnen zonder recept bestellen

  17. wildmindok4zef Avatar
    wildmindok4zef

    J’ai une passion debordante pour Betway Casino, ca donne une vibe electrisante. Le catalogue est un tresor de divertissements, avec des slots aux designs captivants. Il donne un elan excitant. Les agents repondent avec rapidite. Les paiements sont securises et instantanes, cependant des recompenses supplementaires seraient parfaites. Dans l’ensemble, Betway Casino vaut une exploration vibrante. Ajoutons aussi le design est tendance et accrocheur, amplifie le plaisir de jouer. A signaler les tournois frequents pour l’adrenaline, cree une communaute vibrante.
    Avancer|

  18. JasonNergo Avatar
    JasonNergo

    Tryggt apotek utan recept: Tryggt apotek utan recept – apotek online sverige

  19. StephenLib Avatar
    StephenLib

    Nettapotek med rask frakt Nettapotek med rask frakt Nettapotek med rask frakt

  20. Williamseelo Avatar
    Williamseelo

    apotek pa nett: Hvilket apotek pa nett er best i Norge – Nettapotek med rask frakt

  21. JasonNergo Avatar
    JasonNergo

    Mexican pharmacies ranked 2025: mexico pharmacy – mexican pharmacy

  22. Howardmex Avatar

    бездепозитный бонус с выводом без пополнения Бездепозитные бонусы — это отличный способ войти в мир онлайн-гемблинга без вложений, но подходите с умом. Они дают шанс на выигрыш, но условия могут быть сложными, а риски — высокими. Выбирайте только проверенные казино

  23. GeorgeAlila Avatar
    GeorgeAlila

    http://tryggapotekguiden.com/# apoteket rabattkod

  24. GeorgeAlila Avatar
    GeorgeAlila
  25. Curtisvax Avatar
    Curtisvax

    best rated canadian pharmacy: doctor recommended Canadian pharmacy – best canadian online pharmacy reviews

  26. VernonAbsed Avatar

    Компенсаторы Трубы ПНД (полиэтилен низкого давления) отличаются повышенной гибкостью и используются для прокладки кабельных сетей, систем водоснабжения и газопроводов.

  27. Curtisvax Avatar
    Curtisvax

    tablets delivery: Dr India Meds – Indian pharmacy coupon codes

  28. Robertinvok Avatar
    Robertinvok

    DrIndiaMeds: Dr India Meds – DrIndiaMeds

  29. LarryAMORA Avatar
    LarryAMORA

    Indian pharmacy coupon codes doctor recommended Indian pharmacy verified Indian drugstores

  30. JerryAmure Avatar
    JerryAmure

    online pharmacies affordable Indian medications online safe Indian generics for US patients

  31. Michaeldum Avatar
    Michaeldum

    https://doctornorthrx.xyz/# legitimate pharmacy shipping to USA

  32. Robertinvok Avatar
    Robertinvok

    canadian pharmacy online: legitimate pharmacy shipping to USA – verified Canada drugstores

  33. JerryAmure Avatar
    JerryAmure

    doctor recommended Canadian pharmacy canadian neighbor pharmacy canadian pharmacy

  34. Michaeldum Avatar
    Michaeldum

    https://doctornorthrx.xyz/# canadian pharmacy

Leave a Reply

Your email address will not be published. Required fields are marked *