get_resources - Returns active resources
Вернуться к: PHP опции/Информационные Функции
get_resources
(PHP 7)
get_resources — Returns active resources
Описание
$type
] )Returns an array of all currently active resources, optionally filtered by resource type.
Список параметров
-
type
-
If defined, this will cause get_resources() to only return resources of the given type. A list of resource types is available.
If the string Unknown is provided as the type, then only resources that are of an unknown type will be returned.
If omitted, all resources will be returned.
Возвращаемые значения
Returns an array of currently active resources, indexed by resource number.
Примеры
Пример #1 Unfiltered get_resources()
<?php
$fp = tmpfile();
var_dump(get_resources());
?>
Результатом выполнения данного примера будет что-то подобное:
array(1) { [1]=> resource(1) of type (stream) }
Пример #2 Filtered get_resources()
<?php
$fp = tmpfile();
var_dump(get_resources('stream'));
var_dump(get_resources('curl'));
?>
Результатом выполнения данного примера будет что-то подобное:
array(1) { [1]=> resource(1) of type (stream) } array(0) { }
Смотрите также
- get_loaded_extensions() - Возвращает массив имен всех скомпилированных и загруженных модулей
- get_defined_constants() - Возвращает ассоциативный массив с именами и значениями всех предопределенных констант
- get_defined_functions() - Возвращает массив всех определённых функций
- get_defined_vars() - Возвращает массив всех определенных переменных
Вернуться к: PHP опции/Информационные Функции