#125 | include KONG_PATH . 'ext/' . $classname . '.class.php'; |
#126 | } else { |
#127 | // 避免在生产环境中暴露详细路径 |
#128 | if (defined('DEBUG') && DEBUG) { |
#129 | throw new Exception("类 $classname 不存在"); |
#130 | } else { |
#131 | // Log error or handle gracefully in production |
#132 | error_log("Autoload failed: Class $classname not found."); |
#133 | // Optionally trigger a generic error or redirect |
#134 | return false; |