当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP realpath( )用法及代码示例


PHP中的realpath()函数是一个内置函数,用于返回规范化的绝对​​路径名。
realpath()函数将删除所有符号链接,例如“ /./”、“/../”和多余的“ /”,并返回绝对路径名。
路径将作为参数发送到realpath()函数,并且成功时返回绝对路径名,失败时返回False。

用法:

realpath(path)

使用的参数:
PHP中的realpath()函数仅接受一个参数。


  • path :它是一个强制性参数,用于指定用户想知道其绝对路径的符号路径。

返回值:
成功返回绝对路径,失败返回False。

错误与异常

  1. 如果正在运行的脚本对层次结构中的所有目录都不具有可执行权限,则realpath()函数将返回False。
  2. 函数realpath()不适用于Phar内的文件,因为这样的路径不是真实路径。
  3. 由于PHP的整数类型是带符号的,并且许多平台使用32位整数,因此某些文件系统函数可能会对大于2GB的文件返回意外结果。

例子:

Input : echo realpath("gfg.txt");
Output : C:\xampp\htdocs\filehandling\gfg.txt

Input : chdir('/docs/assignment/');
        echo realpath('./../../gfg/articles');

Output : /gfg/articles

以下示例程序旨在说明realpath()函数。

假设有一个名为“gfg.txt”的文件

程序1

<?php  
// returning absolute path  
// using realpath() function 
echo realpath("gfg.txt"); 
  
?>

输出:

C:\xampp\htdocs\filehandling\gfg.txt

程序2

<?php  
  
// using chdir() to change directory 
chdir('/docs/assignment/'); 
  
// returning absolute path using realpath() function 
echo realpath('./../../gfg/articles'); 
  
?>

输出:

/gfg/articles

参考:
http://php.net/manual/en/function.realpath.php



相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | realpath() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。