标签: php
realpath(__DIR__ . '/../') . '/'
我试图将父目录分配给变量。这个衬里有效,但我觉得有更清洁的方式。
答案 0 :(得分:5)
使用dirname获取目录的父级...
$dir = dirname(__DIR__) . '/';