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

PHP realpath() 函数

WBOY
Release: 2016-06-23 14:34:35
Original
945 people have browsed it

定义和用法

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

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

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

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

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

例子

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

输出:

              <p class="sycode">                  <p class="sycode">      C : \Inetpub\testweb\test . txt     </p>              </p><p> </p>
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template