0
我有這個設置成composer.json作曲家PSR-4自動加載具有相同的密鑰
"autoload": {
"psr-4": {
"": "src/",
"App\\": "src/App"
}
}
這個文件夾結構:
src
---App
------MyClass.php --> namespace \App;
---Somedir
------Otherdir
---------OtherClass.php --> no namespace
下的文件夾src/App
將加載,文件Somedir
不低於。
有什麼問題嗎?