Home >Backend Development >PHP Tutorial >PHP realpath() 函数

PHP realpath() 函数

WBOY
WBOYOriginal
2016-06-23 14:34:35927browse

定义和用法

realpath() 函数返回绝对路径。

该函数删除所有符号连接(比如 '/./', '/../' 以及多余的 '/'),返回绝对路径名。

若失败,则返回 false。比如说文件不存在的话。

语法
readlink(linkpath)
参数 描述
linkpath 必需。规定要检查的连接路径。
说明

在 BSD 系统上,如果仅仅是 linkpath 不存在的话,PHP 并不会像其它系统那样返回 false。

例子

              <p class="sycode">                  <p class="sycode">      <? php   echo   realpath ( " test.txt " ); ?>     </p>              </p><p> </p>

输出:

              <p class="sycode">                  <p class="sycode">      C : \Inetpub\testweb\test . txt     </p>              </p><p> </p>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP:UChome分析Next article:PHP array_walk() 函数