欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

realpath自动清除路径中的点号

程序员文章站 2023-12-27 15:12:45
...

realpath自动清除路径中的点号,但仅限与点号出现在目录名和目录符号中间的情况。 php echo realpath('/var/www/test/constant../../array/');/var/www/test/arrayphp echo realpath('/var/www/test/constant./../array/');/var/www/test/arrayphp echo realp

realpath自动清除路径中的点号,但仅限与点号出现在目录名和目录符号中间的情况。

php > echo realpath('/var/www/test/constant../../array/');
/var/www/test/array
php > echo realpath('/var/www/test/constant./../array/');
/var/www/test/array
php > echo realpath('/var/www/test/constant/../array/');
/var/www/test/array
php > var_dump(realpath('/var/www/test/constan.t/../array/'));
bool(false)

上一篇:

下一篇: