使用 Rails Generator 之类的东西进行 PHP 开发
我想创建一个基于命令行的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看一些 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.
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.
如果您想要 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.