PHP
Referenzliste
realpath_cache_get
Dateisystem-Funktionen
Befehl:
array realpath_cache_get ( void )
Rückgabewerte:
Gibt ein Array von realpath Cache-Einträge. Die Tasten sind Originalpfad Einträge, und die Werte sind Arrays von Datenelementen, die den aufgelösten Pfad, Ablaufdatum, und andere Optionen im Cache gehalten werden.
Beschreibung:
Holt sich den Inhalt der realpath-Cache.
Aktiv in Version:
(PHP 5 >= 5.3.2, PHP 7)
Siehe auch:
realpath_cache_get() - Beispiel:
Eingabe:
<?php var_dump(realpath_cache_get()); ?>
Ausgabe:
array(2) {
["/test"]=>
array(4) {
["key"]=>
int(123456789)
["is_dir"]=>
bool(true)
["realpath"]=>
string(5) "/test"
["expires"]=>
int(1260318939)
}
["/test/test.php"]=>
array(4) {
["key"]=>
int(987654321)
["is_dir"]=>
bool(false)
["realpath"]=>
string(12) "/root/test.php"
["expires"]=>
int(1260318939)
}
}
["/test"]=>
array(4) {
["key"]=>
int(123456789)
["is_dir"]=>
bool(true)
["realpath"]=>
string(5) "/test"
["expires"]=>
int(1260318939)
}
["/test/test.php"]=>
array(4) {
["key"]=>
int(987654321)
["is_dir"]=>
bool(false)
["realpath"]=>
string(12) "/root/test.php"
["expires"]=>
int(1260318939)
}
}
Dateisystem-Funktionen