$PATH_INFO oder realpath?

Willy

Gesperrt
Ich will den ganz normalen Pfad des Verzeichnisses einer Datei ausgeben. Was soll ich da am besten benutzen? $PATH_INFO o.ä?

Hab bei PHP.net nix mehr gefunden...
 
originally from php.net
$_SERVER['SCRIPT_FILENAME']

The absolute pathname of the currently executing script.



$SERVER['SCRIPT_NAME']

Contains the current script's path. This is useful for pages which need to point to themselves.



$SERVER['PATH_TRANSLATED']

Filesystem- (not document root-) based path to the current script, after the server has done any virtual-to-real mapping.

suchs dir aus. das beste wäre deiner beschreibung nach das letzte.
 
Zurück