使用 Rails Generator 之类的东西进行 PHP 开发

发布于 2024-09-29 03:25:40 字数 134 浏览 3 评论 0原文

我想创建一个基于命令行的 PHP 开发工具。

它应该根据 Rails 生成器的功能执行非常相似的操作,并与 rake 集成,因为数据库的 rake 任务也应该可用。

或者是否有一个 ruby​​ 框架允许构建这样的生成器?

I want to create a command line based tool for PHP Development.

It should do something quite similar based on what the rails generator does as well as integrate with rake, as the rake tasks for the DB should also be available.

Or is there a ruby framework that allows to build such generators?

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

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

发布评论

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

评论(3

三岁铭 2024-10-06 03:25:40

查看一些 ORM 项目,例如 Doctrine,您还可以查看其他一些框架,例如 Symphony 或 Cake,我认为没有适用于 Zend 的框架。

Look into a few ORM projects like Doctrine, you can also look into some other frameworks like Symphony or Cake, I don't think there is one for Zend.

方圜几里 2024-10-06 03:25:40

Zend Framework 具有用于在 Zend_Tool 之上构建 CLI 工具的 API。此外,它还具有 Zend_CodeGenerator 组件,用于大多数 PHP 代码的反射、扩展和修改。编写自己的 Zend_Tool 提供程序很困难,但也是可能的。
对于 ORM 生成,您应该使用 Doctrine。

Zend Framework has the API for building CLI tools on top of Zend_Tool. Besides, it has Zend_CodeGenerator component for most of PHP code reflection, extending and modifying. Writing own Zend_Tool providers is hard, but possible.
For ORM generation you should use Doctrine.

浮世清欢 2024-10-06 03:25:40

如果您想要 PHP 开发具有类似 Rails 的功能,为什么不使用类似的框架呢?例如, CodeIgniter 具有 数据库迁移CakePHP脚手架 以及迁移。

If you want Rails-like functionality for PHP Development, why not use a similar framework? CodeIgniter, for example, has database migrations and CakePHP has scaffolding as well as migrations.

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