$sanitizer->intArrayVal() method

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

NameType(s)Description
valuearray, 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 strict option:

  • min (int): Minimum allowed value (default=0)
  • max (int): Maximum allowed value (default=PHP_INT_MAX)
  • maxItems (int): Maximum items allowed in each array (default=0, which means no limit)
  • maxDepth (int): Max nested array depth (default=0, which means no nesting allowed) Since 3.0.160
  • strict (bool): Remove rather than convert any values that are not all digits or fall outside min/max range? (default=true) Note that this default for the strict option is different from the one on the intArray() method.

Return value

array

Array of integers


$sanitizer methods and properties

API reference based on ProcessWire core version 3.0.236

Latest news

  • ProcessWire Weekly #523
    In the 523rd issue of ProcessWire Weekly we'll check out what's new in the core this week, share some new module related news, and more. Read on!
    Weekly.pw / 18 May 2024
  • ProFields Table Field with Actions support
    This week we have some updates for the ProFields table field (FieldtypeTable). These updates are primarily focused on adding new tools for the editor to facilitate input and management of content in a table field.
    Blog / 12 April 2024
  • Subscribe to weekly ProcessWire news

“To Drupal, or to ProcessWire? The million dollar choice. We decided to make an early switch to PW. And in retrospect, ProcessWire was probably the best decision we made. Thanks are due to ProcessWire and the amazing system and set of modules that are in place.” —Unni Krishnan, Founder of PigtailPundits