|
get_resourcesReturns active resources Beschreibung
array get_resources
([ string
$type
] )Returns an array of all currently active resources, optionally filtered by resource type. Parameter-Liste
RückgabewerteReturns an array of currently active resources, indexed by resource number. Beispiele
Beispiel #1 Unfiltered get_resources
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
array(1) {
[1]=>
resource(1) of type (stream)
}
Beispiel #2 Filtered get_resources
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
array(1) {
[1]=>
resource(1) of type (stream)
}
array(0) {
}
Siehe auch
|