Snippets tagged “directory-structure”
2 snippets use this tag.
- class does not comply with psr-4 autoloading standard. SkippingPHP
PSR-4 is a standard for autoloading classes in PHP.
- 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).