Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- Bug #76366 (references in sub-array for filtering breaks the filter) --EXTENSIONS..

Decoded Output download

--TEST--
Bug #76366 (references in sub-array for filtering breaks the filter)
--EXTENSIONS--
filter
--FILE--
<?php

#array to filter
$data = ['foo' => 6];

#filter args
$args = [
    'foo'=> [
        'filter' => FILTER_VALIDATE_INT,
        'flags' => FILTER_FORCE_ARRAY
    ]
];

$args['foo']['options'] = [];

#create reference
$options = &$args['foo']['options'];

#set options
$options['min_range'] = 1;
$options['max_range'] = 5;

#show the filter result
var_dump(filter_var_array($data, $args));
?>
--EXPECT--
array(1) {
  ["foo"]=>
  array(1) {
    [0]=>
    bool(false)
  }
}

Did this file decode correctly?

Original Code

--TEST--
Bug #76366 (references in sub-array for filtering breaks the filter)
--EXTENSIONS--
filter
--FILE--
<?php

#array to filter
$data = ['foo' => 6];

#filter args
$args = [
    'foo'=> [
        'filter' => FILTER_VALIDATE_INT,
        'flags' => FILTER_FORCE_ARRAY
    ]
];

$args['foo']['options'] = [];

#create reference
$options = &$args['foo']['options'];

#set options
$options['min_range'] = 1;
$options['max_range'] = 5;

#show the filter result
var_dump(filter_var_array($data, $args));
?>
--EXPECT--
array(1) {
  ["foo"]=>
  array(1) {
    [0]=>
    bool(false)
  }
}

Function Calls

None

Variables

None

Stats

MD5 850ca9cd78f71c6a37e10ca9d2afc7bc
Eval Count 0
Decode Time 96 ms