1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/ext/filter/filter.stub.php
2020-04-11 14:13:11 +02:00

35 lines
780 B
PHP

<?php
/** @generate-function-entries */
function filter_has_var(int $type, string $variable_name): bool {}
/**
* @param mixed $options
* @return mixed
*/
function filter_input(int $type, string $variable_name, int $filter = FILTER_DEFAULT, $options = null) {}
/**
* @param mixed $variable
* @param mixed $options
* @return mixed
*/
function filter_var($variable, int $filter = FILTER_DEFAULT, $options = null) {}
/**
* @param mixed $options
* @return mixed
*/
function filter_input_array(int $type, $options = null, bool $add_empty = true) {}
/**
* @param mixed $options
* @return mixed
*/
function filter_var_array(array $data, $options = null, bool $add_empty = true) {}
function filter_list(): array {}
function filter_id(string $filtername): int|false {}