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 realpath('/var/www/test/constant/../array/');/var/www/test/arrayphp > var_dump(realpath('/var/www/test/constan.t/../array/'));bool(false)
原文地址:realpath自动清除路径中的点号, 感谢原作者分享。