php一些函数

realpath() 函数

定义和用法

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

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

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

例子

<?php
echo realpath("test.txt");
?>

输出:

C:\Inetpub\testweb\test.txt







posted @ 2016-11-29 17:24  海绵初学者  阅读(87)  评论(0编辑  收藏  举报