get_resources

(PHP 7)

get_resourcesReturns active resources

Описание

array get_resources ([ string $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() - Возвращает массив всех определенных переменных

Коментарии

Автор:
¿Se pueden usar con matrices de más de una dimensión?
2017-09-26 22:54:06
http://php5.kiev.ua/manual/ru/function.get-resources.html

    Поддержать сайт на родительском проекте КГБ