Open
Description
Description
The following code:
<?php
$data = [
'product_id' => '42',
'component' => '10.36',
];
var_dump(filter_var_array($data, FILTER_VALIDATE_INT|FILTER_NULL_ON_FAILURE));
Resulted in this output:
Warning: filter_var_array(): Unknown filter with ID 134217985 in %s on line %d
bool(false)
But I expected this output instead:
array(2) {
["product_id"]=>
int(42)
["component"]=>
NULL
}
PHP Version
PHP 5.4.0 to master
Operating System
No response