« PHP:clearstatchache()関数 | メイン | PHP:copy()関数 »
2006年11月09日
PHP:realpath()関数
realpath()関数は、引数に指定した相対パスに対応する絶対パスを返します。
$filePath = realpath('../index.html');
//1階層上のindex.htmlを指定
print $filePath;
※上記の結果、たとえば「/var/www/httpdocs/index.html」などのように対応する絶対パスを返します。
投稿者 wing : 2006年11月09日 00:11