We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here's the problem:
MyClass resides in MyClass.php. A case-sensitive autoloader work with
MyClass
MyClass.php
$c = new MyClass;
but not with
$c = new myClass;
But this will surely work:
$c = new MyClass; $d = new myclass;
https://r.je/php-autoloaders-should-not-be-case-sensitive.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here's the problem:
MyClass
resides inMyClass.php
. A case-sensitive autoloader work withbut not with
But this will surely work:
https://r.je/php-autoloaders-should-not-be-case-sensitive.html
The text was updated successfully, but these errors were encountered: