php相对路径要怎么写?

2024-11-16 01:50:54
推荐回答(2个)
回答1:

read.php中相应路径是这样的:
require_once(./order/aaa.txt);
aaa.txt就是你在order目录下的记事本文件,./表示当前目录,../表示上级目录

回答2:

当前目录:./file1/file2/文件名.后缀;
上一层路径:../file1/file2/文件名.后缀.