如何完成从绝对路径上移一个文件夹?
文件结构:
/folder/
/folder/config.php
/folder/classes/test.php
从 test.php 我想 include_once 或 require_once config.php 文件。
我已经在 test.php 中尝试过,但它不起作用:
require_once(dirname(__FILE__) . '/../config.php');
错误消息:*PHP 致命错误:require_once(): 无法打开所需的 '/loooong-path/classes/../test.php'*