Propel 1.6 - 配置示例?

发布于 2024-11-29 08:10:07 字数 516 浏览 1 评论 0原文

我是 Propel ORM 的新手。我已经生成了代码,现在正在尝试将运行时与我的 PHP 项目集成。我正在努力初始化主 Propel 类。看起来用法应该是:

require_once('propel/runtime/lib/Propel.php');
Propel::configure('/path/to/runtime/config.php');
Propel::initialize();

除了这个之外,我找不到任何关于运行时配置内容的文档:

http://www.propelorm.org/wiki/Documentation/1.6/RuntimeConfiguration

但是,此文档显示的是 XML 文件,不是 PHP 文件。有什么想法吗?

I'm new to using Propel ORM. I have generated code and am now trying to integrate the runtime with my PHP project. I am struggling with initializing the main Propel class. It appears that the usage should be:

require_once('propel/runtime/lib/Propel.php');
Propel::configure('/path/to/runtime/config.php');
Propel::initialize();

I cannot find any documentation on what the contents on the runtime configuration should be, other than this:

http://www.propelorm.org/wiki/Documentation/1.6/RuntimeConfiguration

However, this document shows an XML file, not a PHP file. Any ideas?

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

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

发布评论

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

评论(2

ζ澈沫 2024-12-06 08:10:07

您需要实际运行生成器,如下所示:

$ cd /path/to/project
$ propel-gen convert-conf

然后,这将解析 XML 并将其转换为 php 数组。这些都在文档的运行时连接设置部分中进行了描述。如果您还没有阅读的话,您可能需要阅读整个“构建时间”部分。

You need to actually run the generator on it like:

$ cd /path/to/project
$ propel-gen convert-conf

This will then parse the XML and convert it to the php array. This is all described in the Runtime Connection Settings section of the docs. You probably need to read the entire Build Time section though if you havent already.

守不住的情 2024-12-06 08:10:07

我写了一篇HOWTO不久前开始 - 也许这可能有用?

I wrote a HOWTO on getting started some while ago - perhaps that might be useful?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文