mirror of
https://github.com/php/php-src.git
synced 2026-03-27 01:32:22 +01:00
This assumes that `iterator_*` will now always throw or abort on failure. Also, move #include _arginfo.h directive to the top of the file - virtually all other files put it there, and developers may base code on basic_functions.c. Closes GH-4968
36 lines
1.1 KiB
PHP
Executable File
36 lines
1.1 KiB
PHP
Executable File
<?php
|
|
|
|
/* ext/spl/php_spl.c */
|
|
|
|
function class_implements($what, bool $autoload = true): array|false {}
|
|
|
|
function class_parents($instance, bool $autoload = true): array|false {}
|
|
|
|
function class_uses($what, bool $autoload = true): array|false {}
|
|
|
|
function spl_autoload(string $class_name, string $file_extensions = UNKNOWN): void {}
|
|
|
|
// This silently ignores non-string class names
|
|
function spl_autoload_call($class_name): void {}
|
|
|
|
function spl_autoload_extensions(string $file_extensions = UNKNOWN): string {}
|
|
|
|
function spl_autoload_functions(): array|false {}
|
|
|
|
function spl_autoload_register($autoload_function = null, bool $throw = true, bool $prepend = false): bool {}
|
|
|
|
function spl_autoload_unregister($autoload_function): bool {}
|
|
|
|
function spl_classes(): array {}
|
|
|
|
function spl_object_hash(object $obj): string {}
|
|
|
|
function spl_object_id(object $obj): int {}
|
|
|
|
/* ext/spl/spl_iterators.c */
|
|
function iterator_apply(Traversable $iterator, callable $function, ?array $args = null): int {}
|
|
|
|
function iterator_count(Traversable $iterator): int {}
|
|
|
|
function iterator_to_array(Traversable $iterator, bool $use_keys = true): array {}
|