XenForo_Input cleaning array of uints?

Do you mean this?

PHP:
$uints = $this->_input->filterSingle('uints', array(XenForo_Input::UINT, 'array' => true));
 
What if I am using XenForo_Input::rawFilter? I have this line of code:

PHP:
XenForo_Input::rawFilter($arrayOfUInts, XenForo_Input::UINT, array("array" => true));

but it spits out an int instead.
 
Top Bottom