Как получить путь производного класса от унаследованного метода?
Как получить путь к текущему классу из унаследованного метода? У меня есть следующее: <?php // file: /parentDir/class.php class Parent { protected function getDir() { return dirname(__FILE__); } } ?> а также <?php // file: /childDir/class.php class Child extends Parent { public function __construct() { echo $this->getDir(); } } $tmp = new Child(); // output: '/parentDir' […]