Searched refs:FILTER_CALLBACK (Results 1 – 13 of 13) sorted by relevance
/PHP-8.2/ext/filter/tests/ |
H A D | 029.phpt | 2 filter_var() and FILTER_CALLBACK 13 var_dump(filter_var("data", FILTER_CALLBACK, array("options"=>"test"))); 15 var_dump(filter_var("", FILTER_CALLBACK, array("options"=>"test"))); 18 filter_var("qwe", FILTER_CALLBACK, array("options"=>"no such func")); 24 filter_var("qwe", FILTER_CALLBACK, array("options"=>"")); 30 filter_var("qwe", FILTER_CALLBACK); 50 var_dump(filter_var("data", FILTER_CALLBACK, array("options"=>"test1"))); 52 var_dump(filter_var("", FILTER_CALLBACK, array("options"=>"test1"))); 59 var_dump(filter_var("data", FILTER_CALLBACK, array("options"=>"test2"))); 61 var_dump(filter_var("", FILTER_CALLBACK, array("options"=>"test2"))); [all …]
|
H A D | 037.phpt | 12 echo filter_input(INPUT_GET, 'a', FILTER_CALLBACK, array("options"=>'myfunc')); 18 echo filter_var($data, FILTER_CALLBACK, array("options"=>'myfunc')); 23 'filter' => FILTER_CALLBACK,
|
H A D | filter_callback_require_scalar.phpt | 2 FILTER_CALLBACK with explicit FILTER_REQUIRE_SCALAR 11 …return filter_var($var, FILTER_CALLBACK, ['options' => $callback, 'flags' => FILTER_REQUIRE_SCALAR…
|
H A D | 052.phpt | 15 var_dump(filter_var($data, FILTER_CALLBACK, array('options' => 'filter_cb'))); 17 var_dump(filter_var_array($data, array('bar' => array('filter' => FILTER_CALLBACK, 'options' => 'fi…
|
H A D | 053.phpt | 9 filter_var('durty/boy', FILTER_CALLBACK, array(
|
H A D | callback_closure.phpt | 11 var_dump(filter_var($var, FILTER_CALLBACK, array('options'=> $callback)));
|
H A D | callback_non_modified_var.phpt | 11 var_dump(filter_var($var, FILTER_CALLBACK, array('options'=>'callback')));
|
/PHP-8.2/ext/filter/ |
H A D | filter_private.h | 89 #define FILTER_CALLBACK 0x0400 macro 94 || id == FILTER_CALLBACK)
|
H A D | filter.stub.php | 178 const FILTER_CALLBACK = UNKNOWN; define
|
H A D | filter_arginfo.h | 96 REGISTER_LONG_CONSTANT("FILTER_CALLBACK", FILTER_CALLBACK, CONST_PERSISTENT); in register_filter_symbols()
|
H A D | filter.c | 62 { "callback", FILTER_CALLBACK, php_filter_callback }, 488 if (filter != FILTER_CALLBACK) { in php_filter_call()
|
/PHP-8.2/ext/gd/libgd/ |
H A D | gd_interpolation.c | 177 FILTER_CALLBACK = 999 enumerator
|
/PHP-8.2/ |
H A D | NEWS | 1155 . Fix explicit FILTER_REQUIRE_SCALAR with FILTER_CALLBACK (ilutov)
|
Completed in 33 milliseconds