realpath() - 返回规范化的绝对路径名 - php 文件目录函数
realpath()
(PHP 4, PHP 5, PHP 7)
返回规范化的绝对路径名
说明
realpath(string $path): stringrealpath()扩展所有的符号连接并且处理输入的$path中的'/./','/../'以及多余的'/'并返回规范化后的绝对路径名。返回的路径中没有符号连接,'/./'或'/../'成分。
参数
$path要检查的路径。Note:
Whilst a path must be supplied, the value can be blank orNULL
In these cases, the value is interpreted as the current directory.
返回值
Returns the canonicalized absolute pathname on success. The resulting path will have no symbolic link,'/./' or '/../' components.
realpath()失败时返回FALSE
,比如说文件不存在的话。
The running script must have executable permissions on all directories in the hierarchy,otherwiserealpath()will returnFALSE
.
Note:因为 PHP 的整数类型是有符号整型而且很多平台使用 32 位整型,对 2GB以上的文件,一些文件系统函数可能返回无法预期的结果。
更新日志
版本 | 说明 |
---|---|
5.3.0 | 在之前的版本中,在*BSD 系统上,如果仅仅是$path不存在的话,realpath()并不会像其它系统那样返回FALSE 。 |
5.0.0 | 在此之前的版本中,如果$path传入了空或者NULL ,将导致realpath()返回脚本当前的目录。 |
范例
Example #1realpath()例子
以上例程会输出:
/etc/passwd
Windows 上的realpath()
在 Windows 上,realpath()会将 unix 风格的路径改成 Windows 风格的。
以上例程会输出:
C:\WINDOWS\System32
参见
basename()
返回路径中的文件名部分dirname()
返回路径中的目录部分pathinfo()
返回文件路径的信息
Because realpath() does not work on files that do not exist, I wrote a function that does. It replaces (consecutive) occurences of / and \\ with whatever is in DIRECTORY_SEPARATOR, and processes /. and /.. fine. Paths returned by get_absolute_path() contain no (back)slash at position 0 (beginning of the string) or position -1 (ending)
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!