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

10,148 responses to “Input validation with filter functions”

  1. ThomasPinna Avatar
    ThomasPinna

    капсульный дом купить в россии Если вы ищете капсульный дом для глэмпинга, рассматриваете вариант строительства своими руками или интересуетесь готовыми решениями от производителей, таких как Ulysse или Wellhouse, рынок предлагает широкий выбор для разных бюджетов и потребностей.

  2. KeithDep Avatar
    KeithDep

    https://ivermectinfast.shop/# antiparasitic medication usa

  3. Rayfordpag Avatar
    Rayfordpag

    generic amoxicillin online: amoxil 500mg tablets usa – antibiotics online pharmacy usa

  4. www.giveawayoftheday.com Avatar

    References:

    Instant Casino Jackpot Spiele

    References:
    https://atavi.com/share/xrks2tz1l775e

  5. KeithDep Avatar
    KeithDep

    http://stericarepharmacy.com/# 50 mg prednisone from canada

  6. Allendwems Avatar
    Allendwems

    https://stericarepharmacy.com/# prednisone for sale in canada

  7. DouglasEvaps Avatar
    DouglasEvaps

    клиника наркологии Наши услуги доступны для всех, кто ищет качественное и платное лечение, гарантируя конфиденциальность и индивидуальный подход

  8. Rayfordpag Avatar
    Rayfordpag

    trusted antibiotic pharmacy usa: generic amoxicillin online – safe antibiotics online source

  9. KevinBup Avatar
    KevinBup

    buy prednisone online no prescription: trusted steroid medication source – prednisone 5 mg tablet price

  10. KevinBup Avatar
    KevinBup

    prednisone 50 mg tablet cost: prednisone tablets 10mg 20mg – buy prednisone canadian pharmacy

  11. Rayfordpag Avatar
    Rayfordpag

    amoxil fast: trusted antibiotic pharmacy usa – amoxil

  12. KevinBup Avatar
    KevinBup

    generic amoxicillin online: safe antibiotics online source – buy amoxil online usa

  13. MichaelMam Avatar

    1хБет промокод Активируйте на http://7000.kiev.ua и заберите бонус 100% на депозит до 32 500 рублей, чтобы получить максимальный стартовый бонус.

  14. Rayfordpag Avatar
    Rayfordpag

    trusted antibiotic pharmacy usa: amoxicillin price without insurance – bacterial infection medication

  15. Allendwems Avatar
    Allendwems

    https://amoxilfast.com/# generic amoxicillin online

  16. http://amur.1gb.ua Avatar

    References:

    Instant Casino Login vergessen

    References:
    https://bandori.party/user/686241/fowlbelief0/

  17. Allendwems Avatar
    Allendwems

    http://stericarepharmacy.com/# prednisone medication

  18. postheaven.net Avatar

    References:

    Instant Casino Auszahlung sofort

    References:
    https://nouvellessignet.site/item/475602

  19. Rayfordpag Avatar
    Rayfordpag

    order prednisone from canada: prednisone tablets 10mg 20mg – prednisone

  20. KevinBup Avatar
    KevinBup

    stromectol delivery united states: ivermectin fast – ivermectin oral tablets usa

  21. KevinBup Avatar
    KevinBup

    trusted antibiotic pharmacy usa: bacterial infection medication – bacterial infection medication

  22. KevinBup Avatar
    KevinBup

    trusted antibiotic pharmacy usa: trusted antibiotic pharmacy usa – buy amoxil online usa

  23. KeithDep Avatar
    KeithDep

    http://amoxilfast.com/# bacterial infection medication

  24. KevinBup Avatar
    KevinBup

    amoxil: amoxil without prescription usa – buy amoxil online usa

  25. KeithDep Avatar
    KeithDep

    https://ivermectinfast.com/# stromectol price us

  26. KevinBup Avatar
    KevinBup

    buy stromectol online usa: stromectol delivery united states – stromectol without prescription usa

  27. KevinBup Avatar
    KevinBup

    antiparasitic medication usa: parasite infection medication – Stromectol

  28. Allendwems Avatar
    Allendwems

    http://stericarepharmacy.com/# prednisone without prescription medication

  29. KevinBup Avatar
    KevinBup

    generic amoxicillin online: amoxicillin 250 mg capsule – antibiotics online pharmacy usa

  30. KevinBup Avatar
    KevinBup

    prednisone 2 5 mg: prednisone brand name us – prednisone 12 mg

  31. KevinBup Avatar
    KevinBup

    amoxicillin capsules online: amoxil without prescription usa – fast delivery amoxicillin usa

  32. Allendwems Avatar
    Allendwems

    https://stericarepharmacy.shop/# prednisone 10mg cost

  33. Timsothydet Avatar
    Timsothydet

    That is very attention-grabbing, You are an overly professional blogger. I have joined your feed and sit up for in the hunt for extra of your fantastic post. Also, I have shared your site in my social networks
    https://teletype.in/@avtobloggerua/UJyFYOkOA7I

  34. VincentMof Avatar

    капсульные дома для круглогодичного проживания Капсульный дом фото демонстрирует разнообразие дизайнов и архитектурных решений. Если вы планируете капсульный дом купить в СПб, вас ждут современные технологии и европейское качество.

  35. Allendwems Avatar
    Allendwems

    https://amoxilfast.com/# antibiotics online pharmacy usa

  36. KevinBup Avatar
    KevinBup

    prednisone 40 mg rx: prednisone – prednisone without a prescription

  37. KevinBup Avatar
    KevinBup

    amoxil without prescription usa: generic amoxicillin online – buy amoxil online usa

  38. KevinBup Avatar
    KevinBup

    amoxil: bacterial infection medication – generic amoxicillin online

  39. KeithDep Avatar
    KeithDep

    https://stericarepharmacy.com/# prednisone brand name in usa

  40. RalphzookE Avatar

    заказать еду с доставкой Мы заботимся о каждом клиенте, поэтому стремимся обеспечить безупречный сервис. Kukrylo.spb.ru – ваш персональный гид в мире гастрономии, доступный 24/7.

  41. VincentMof Avatar

    капсульный дом в казахстане Популярность капсульные дома набирают по всей России, от больших городов до удаленных регионов. Капсульный дом Хабаровск может стать вашим уютным гнездышком на Дальнем Востоке.

Leave a Reply

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