Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在记录我的类名spl_autoload_register()以跟踪应用程序的流程。在我的应用程序的每次页面刷新时,我都会看到类被加载了 3 次。如果我使用它会发生同样的事情,__autoload()这让我相信架构存在问题而不是自动加载实现。我应该如何调试这个?我不知道从哪里开始。
spl_autoload_register()
__autoload()
我有两个丢失的图像资源和一些不准确的 .htaccess 指令。Apache 试图将图像作为 404 页提供 - 从而导致我的应用程序每次都启动。用这个修复它:
... RewriteCond %{REQUEST_URI} !\.(jpg|jpeg|png|css|js|svg)$ ...