Sanitize array to be all unsigned integers with no conversions
This is the same as the intArray()
method except for the following:
- The
csv
delimited string conversion option is disabled by default. - The
strict
option default is true, meaning non-integer numbers or those outside allowed range are removed rather than converted.
Available since version 3.0.165.
Usage
// basic usage
$array = $sanitizer->intArrayVal($value);
// usage with all arguments
$array = $sanitizer->intArrayVal($value, $options = []);
Arguments
Name | Type(s) | Description |
---|---|---|
value | array, string, mixed | Accepts an array or CSV string. If given something else, it becomes first value in array. |
options (optional) | array, bool | Options to modify behavior or specify bool for
|
Return value
array
Array of integers
$sanitizer methods and properties
API reference based on ProcessWire core version 3.0.236