Snippets tagged “dirname”
2 snippets use this tag.
- How to get root directory in yii2PHP
In Yii2, you can use the following code to get the root directory:
- PHP how to go one level up on dirname(__FILE__)PHP
You can use dirname(dirname(__FILE__)) to go one level up in the directory structure when using __FILE__ (which returns the current file's path).