defining __DIR__ in PHP class

286 Views Asked by At

Is there a reason why this would cause a 500 error? Something to do with when it's executed and what's available, or am I using __DIR__ incorrectly?

class MyClass
{

   public $filepath = __DIR__ . "/../downloads";

}
0

There are 0 best solutions below