当我获得客户端应用程序提供的JSON对象树时,我想使用red beans php ORM将它们存储到我的数据库中。
目前我正试图这样做
$object = json_decode($json);
// since I know that the input should be of class, let's say, "PRODUCT"
// I can handle the data recursivly and store child object as beans
// through red beans
$ProductController = new ProductController();
return $ProductController->_store($object);
(ProductController可以递归地存储任意对象作为bean)
但是我不时会使用这种方法,我想知道我是否可以重新发明轮子。
我可以使用redbeans中的import
函数还是有限制?在我的观点中,文档在这一点上并不清楚。