有没有办法使用 Zend_Db 关系来设置相关对象?我正在寻找类似以下代码的内容:
$contentModel = new Content();
$categoryModel = new Category();
$category = $categoryModel->createRow();
$category->setName('Name Category 4');
$content = $contentModel->createRow();
$content->setTitle('Title 4');
$content->setCategory($category);
$content->save();
这提供了小型库: http ://code.google.com/p/zend-framework-orm/
有人有这方面的经验吗?ZF 没有类似的计划吗?或者有什么更好的用处?(我不想使用教义 ORM 或外部的东西)
谢谢