Полный путь(PHP)
Какая функция в пхп возвращает полный (абсолютный) путь к файлу? Или как его [путь] получить?
system("pwd");
Цитата:
Originally posted by ReDrum
system("pwd");
system("pwd");
Как именно system работает, и что такое "pwd"?
Цитата:
Originally posted by Vuglah
Здрасте!
Какая функция в пхп возвращает полный (абсолютный) путь к файлу? Или как его [путь] получить?
Здрасте!
Какая функция в пхп возвращает полный (абсолютный) путь к файлу? Или как его [путь] получить?
realpath()
Цитата:
Originally posted by Flying
realpath()
realpath()
А какие версии php поддерживают эту функцию?
Цитата:
Originally posted by Vuglah
А какие версии php поддерживают эту функцию?
А какие версии php поддерживают эту функцию?
realpath
(PHP 4 )
realpath -- Returns canonicalized absolute pathname
Description
string realpath ( string path)
realpath() expands all symbolic links and resolves references to '/./', '/../' and extra '/' characters in the input path and return the canonicalized absolute pathname. The resulting path will have no symbolic link, '/./' or '/../' components.
realpath() returns FALSE on failure, e.g. if the file does not exists.
Example 1. realpath() example
$real_path = realpath ("../../index.php");
Цитата:
Originally posted by Alone
realpath
(PHP 4 )
realpath -- Returns canonicalized absolute pathname
Description
string realpath ( string path)
realpath() expands all symbolic links and resolves references to '/./', '/../' and extra '/' characters in the input path and return the canonicalized absolute pathname. The resulting path will have no symbolic link, '/./' or '/../' components.
realpath() returns FALSE on failure, e.g. if the file does not exists.
Example 1. realpath() example
$real_path = realpath ("../../index.php");
realpath
(PHP 4 )
realpath -- Returns canonicalized absolute pathname
Description
string realpath ( string path)
realpath() expands all symbolic links and resolves references to '/./', '/../' and extra '/' characters in the input path and return the canonicalized absolute pathname. The resulting path will have no symbolic link, '/./' or '/../' components.
realpath() returns FALSE on failure, e.g. if the file does not exists.
Example 1. realpath() example
$real_path = realpath ("../../index.php");
Чтобы легче орентироваться что где, очень помогает phpinfo();