@@ -229,7 +229,7 @@ Filtering Input Data
229229To maintain security of your application, you will want to filter all input as you access it. You can
230230pass the type of filter to use as the second parameter of any of these methods. The native ``filter_var() ``
231231function is used for the filtering. Head over to the PHP manual for a list of `valid
232- filter types <https://www.php.net/manual/en/filter. filters.php> `_.
232+ filter types <https://www.php.net/manual/en/filters.php> `_.
233233
234234Filtering a POST variable would look like this:
235235
@@ -366,7 +366,7 @@ The methods provided by the parent classes that are available are:
366366
367367 :param string $index: The name of the variable/key to look for.
368368 :param int $filter: The type of filter to apply. A list of filters can be found in
369- `Types of filters <https://www.php.net/manual/en/filter. filters.php >`__.
369+ `Types of filters <https://www.php.net/manual/en/filters.php >`__.
370370 :param int $flags: Flags to apply. A list of flags can be found in
371371 `Filter flags <https://www.php.net/manual/en/filter.filters.flags.php >`__.
372372 :returns: ``$_REQUEST `` if no parameters supplied, otherwise the REQUEST value if found, or null if not
@@ -382,7 +382,7 @@ The methods provided by the parent classes that are available are:
382382
383383 :param string $index: The name of the variable/key to look for.
384384 :param int $filter: The type of filter to apply. A list of filters can be found in
385- `Types of filters <https://www.php.net/manual/en/filter. filters.php >`__.
385+ `Types of filters <https://www.php.net/manual/en/filters.php >`__.
386386 :param int $flags: Flags to apply. A list of flags can be found in
387387 `Filter flags <https://www.php.net/manual/en/filter.filters.flags.php >`__.
388388 :returns: ``$_GET `` if no parameters supplied, otherwise the GET value if found, or null if not
@@ -421,7 +421,7 @@ The methods provided by the parent classes that are available are:
421421
422422 :param string $index: The name of the variable/key to look for.
423423 :param int $filter: The type of filter to apply. A list of filters can be
424- found `here <https://www.php.net/manual/en/filter. filters.php >`__.
424+ found `here <https://www.php.net/manual/en/filters.php >`__.
425425 :param int $flags: Flags to apply. A list of flags can be found
426426 `here <https://www.php.net/manual/en/filter.filters.flags.php >`__.
427427 :returns: ``$_POST `` if no parameters supplied, otherwise the POST value if found, or null if not
@@ -433,7 +433,7 @@ The methods provided by the parent classes that are available are:
433433
434434 :param string $index: The name of the variable/key to look for.
435435 :param int $filter: The type of filter to apply. A list of filters can be found in
436- `Types of filters <https://www.php.net/manual/en/filter. filters.php >`__.
436+ `Types of filters <https://www.php.net/manual/en/filters.php >`__.
437437 :param int $flags: Flags to apply. A list of flags can be found in
438438 `Filter flags <https://www.php.net/manual/en/filter.filters.flags.php >`__.
439439 :returns: ``$_POST `` and ``$_GET `` combined if no parameters specified (prefer POST value on conflict),
@@ -453,7 +453,7 @@ The methods provided by the parent classes that are available are:
453453
454454 :param string $index: The name of the variable/key to look for.
455455 :param int $filter: The type of filter to apply. A list of filters can be found in
456- `Types of filters <https://www.php.net/manual/en/filter. filters.php >`__.
456+ `Types of filters <https://www.php.net/manual/en/filters.php >`__.
457457 :param int $flags: Flags to apply. A list of flags can be found in
458458 `Filter flags <https://www.php.net/manual/en/filter.filters.flags.php >`__.
459459 :returns: ``$_GET `` and ``$_POST `` combined if no parameters specified (prefer GET value on conflict),
@@ -473,7 +473,7 @@ The methods provided by the parent classes that are available are:
473473
474474 :param array|string|null $index: COOKIE name
475475 :param int $filter: The type of filter to apply. A list of filters can be found in
476- `Types of filters <https://www.php.net/manual/en/filter. filters.php >`__.
476+ `Types of filters <https://www.php.net/manual/en/filters.php >`__.
477477 :param int $flags: Flags to apply. A list of flags can be found in
478478 `Filter flags <https://www.php.net/manual/en/filter.filters.flags.php >`__.
479479 :returns: ``$_COOKIE `` if no parameters supplied, otherwise the COOKIE value if found or null if not
@@ -495,7 +495,7 @@ The methods provided by the parent classes that are available are:
495495
496496 :param array|string|null $index: Value name
497497 :param int $filter: The type of filter to apply. A list of filters can be found in
498- `Types of filters <https://www.php.net/manual/en/filter. filters.php >`__.
498+ `Types of filters <https://www.php.net/manual/en/filters.php >`__.
499499 :param int $flags: Flags to apply. A list of flags can be found in
500500 `Filter flags <https://www.php.net/manual/en/filter.filters.flags.php >`__.
501501 :returns: ``$_SERVER `` item value if found, null if not
0 commit comments