各位大牛,请教一个问题。
我现在是在iis下配置的php网站,然后在站点下建了一个uploadfile的虚拟目录,请问下如何获取这个虚拟目录的真实路径?比如我想上传文件或者判断此目录中是否存在某个文件is_file('/uploadfile/xxxxxxxxxxxxxxxxxx')永远都是false,有什么简便的方法么?不太想去写配置定绝对路径~
is_file('uploadfile/xxxxxxxxxxxxxxxxxx')
你可在 uploadfile 指向的目录中建一 php 文件,比如 info.php
<?phpecho __DIR__;
$path = file_get_contents('http://localhost/uploadfile/info.php');
你可在 uploadfile 指向的目录中建一 php 文件,比如 info.php
<?phpecho __DIR__;
$path = file_get_contents('http://localhost/uploadfile/info.php');