mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
23 lines
740 B
PHP
23 lines
740 B
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
function filter_has_var(int $input_type, string $var_name): bool {}
|
|
|
|
function filter_input(int $type, string $var_name, int $filter = FILTER_DEFAULT, array|int $options = 0): mixed {}
|
|
|
|
function filter_var(mixed $value, int $filter = FILTER_DEFAULT, array|int $options = 0): mixed {}
|
|
|
|
/** @refcount 1 */
|
|
function filter_input_array(int $type, array|int $options = FILTER_DEFAULT, bool $add_empty = true): array|false|null {}
|
|
|
|
/** @refcount 1 */
|
|
function filter_var_array(array $array, array|int $options = FILTER_DEFAULT, bool $add_empty = true): array|false|null {}
|
|
|
|
/**
|
|
* @return array<int, string>
|
|
* @refcount 1
|
|
*/
|
|
function filter_list(): array {}
|
|
|
|
function filter_id(string $name): int|false {}
|