symfony:如何更改 sfCoreAutoloader 类路径?

发布于 2024-10-15 16:23:53 字数 100 浏览 4 评论 0原文

我希望 symfony 使用我自己的 sfConfigCache.class.php,但我不知道如何修改自动加载器数组中的默认路径。或者还有其他方法告诉 symfony 使用我的课程吗?

I want symfony to use my own sfConfigCache.class.php, but I don't know how to modify the default path in the autoloader array. Or is there another way to tell symfony to use my class?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南笙 2024-10-22 16:23:53

您可能会发现 这很有帮助。

解释如何自定义 configCache。

You may find this helpful.

Explains how to customize the configCache.

雄赳赳气昂昂 2024-10-22 16:23:53

我扩展了 sfApplicationConfiguration:

myproject/apps/frontend/lib/sfApplicationConfigurationExtended .class.php

class sfApplicationConfigurationExtended extends sfApplicationConfiguration
{
  public function getConfigCache()
  {
    if (null === $this->configCache)
    {
      $this->configCache = new sfConfigBlobCache($this);
    }

    return $this->configCache;
  }
}

myproject/apps/frontend/config/frontendConfiguration.class.php

class frontendConfiguration extends sfApplicationConfiguration #sfApplicationConfigurationExtended // For config blob caching
{
  public function configure()
  {
  }
}

I extended the sfApplicationConfiguration:

myproject/apps/frontend/lib/sfApplicationConfigurationExtended .class.php

class sfApplicationConfigurationExtended extends sfApplicationConfiguration
{
  public function getConfigCache()
  {
    if (null === $this->configCache)
    {
      $this->configCache = new sfConfigBlobCache($this);
    }

    return $this->configCache;
  }
}

myproject/apps/frontend/config/frontendConfiguration.class.php

class frontendConfiguration extends sfApplicationConfiguration #sfApplicationConfigurationExtended // For config blob caching
{
  public function configure()
  {
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文