Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个代码:
$test = parse_ini_file("../data/test.ini");
test.ini 位于后一个目录,然后转发到数据文件夹。但是我遇到的问题是 parse_ini_file 不喜欢我创建这个到文件的相对链接,任何人都可以在不创建文件的绝对链接的情况下帮助我做到这一点吗?
你可以试试这个:
$test = parse_ini_file(realpath("../data/test.ini"));
看到这个链接
或者你可以直接使用绝对路径。