Skip to content

Commit 78dfcf5

Browse files
authored
Update filter flags links in incomingrequest.rst
1 parent 4a241bf commit 78dfcf5

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

user_guide_src/source/incoming/incomingrequest.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ The methods provided by the parent classes that are available are:
368368
:param int $filter: The type of filter to apply. A list of filters can be found in
369369
`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
371-
`Filter flags <https://www.php.net/manual/en/filter.filters.flags.php>`__.
371+
`Filter flags <https://www.php.net/manual/en/filter.constants.php#filter.constants.flags.generic>`__.
372372
:returns: ``$_REQUEST`` if no parameters supplied, otherwise the REQUEST value if found, or null if not
373373
:rtype: array|bool|float|int|object|string|null
374374

@@ -384,7 +384,7 @@ The methods provided by the parent classes that are available are:
384384
:param int $filter: The type of filter to apply. A list of filters can be found in
385385
`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
387-
`Filter flags <https://www.php.net/manual/en/filter.filters.flags.php>`__.
387+
`Filter flags <https://www.php.net/manual/en/filter.constants.php#filter.constants.flags.generic>`__.
388388
:returns: ``$_GET`` if no parameters supplied, otherwise the GET value if found, or null if not
389389
:rtype: array|bool|float|int|object|string|null
390390

@@ -423,7 +423,7 @@ The methods provided by the parent classes that are available are:
423423
:param int $filter: The type of filter to apply. A list of filters can be
424424
found `here <https://www.php.net/manual/en/filters.php>`__.
425425
:param int $flags: Flags to apply. A list of flags can be found
426-
`here <https://www.php.net/manual/en/filter.filters.flags.php>`__.
426+
`here <https://www.php.net/manual/en/filter.constants.php#filter.constants.flags.generic>`__.
427427
:returns: ``$_POST`` if no parameters supplied, otherwise the POST value if found, or null if not
428428
:rtype: array|bool|float|int|object|string|null
429429

@@ -435,7 +435,7 @@ The methods provided by the parent classes that are available are:
435435
:param int $filter: The type of filter to apply. A list of filters can be found in
436436
`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
438-
`Filter flags <https://www.php.net/manual/en/filter.filters.flags.php>`__.
438+
`Filter flags <https://www.php.net/manual/en/filter.constants.php#filter.constants.flags.generic>`__.
439439
:returns: ``$_POST`` and ``$_GET`` combined if no parameters specified (prefer POST value on conflict),
440440
otherwise looks for POST value, if nothing found looks for GET value, if no value found returns null
441441
:rtype: array|bool|float|int|object|string|null
@@ -455,7 +455,7 @@ The methods provided by the parent classes that are available are:
455455
:param int $filter: The type of filter to apply. A list of filters can be found in
456456
`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
458-
`Filter flags <https://www.php.net/manual/en/filter.filters.flags.php>`__.
458+
`Filter flags <https://www.php.net/manual/en/filter.constants.php#filter.constants.flags.generic>`__.
459459
:returns: ``$_GET`` and ``$_POST`` combined if no parameters specified (prefer GET value on conflict),
460460
otherwise looks for GET value, if nothing found looks for POST value, if no value found returns null
461461
:rtype: array|bool|float|int|object|string|null
@@ -475,7 +475,7 @@ The methods provided by the parent classes that are available are:
475475
:param int $filter: The type of filter to apply. A list of filters can be found in
476476
`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
478-
`Filter flags <https://www.php.net/manual/en/filter.filters.flags.php>`__.
478+
`Filter flags <https://www.php.net/manual/en/filter.constants.php#filter.constants.flags.generic>`__.
479479
:returns: ``$_COOKIE`` if no parameters supplied, otherwise the COOKIE value if found or null if not
480480
:rtype: array|bool|float|int|object|string|null
481481

@@ -497,7 +497,7 @@ The methods provided by the parent classes that are available are:
497497
:param int $filter: The type of filter to apply. A list of filters can be found in
498498
`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
500-
`Filter flags <https://www.php.net/manual/en/filter.filters.flags.php>`__.
500+
`Filter flags <https://www.php.net/manual/en/filter.constants.php#filter.constants.flags.generic>`__.
501501
:returns: ``$_SERVER`` item value if found, null if not
502502
:rtype: array|bool|float|int|object|string|null
503503

0 commit comments

Comments
 (0)