PHP的ORM框架 -- Propel
Propel是一个适用于PHP5的OR映射(Object Relational Mapping)框架。它允许你使用对象代替SQL来读写数据库表格中的行。Propel提供一个生成器来为你的数据模型创建SQL定义文件和PHP类,与一个运行期引擎用来透明地获取和持久化对象。
<?php $book = BookQuery::create()->findPK(123); // retrieve a record from a database $book->setName('Don\'t be Hax0red!'); // modify. Don't worry about escaping $book->save(); // persist the modification to the database $books = BookQuery::create() // retrieve all books... ->filterByPublishYear(2009) // ... published in 2009 ->orderByTitle() // ... ordered by title ->joinWith('Book.Author') // ... with their author ->find(); foreach($books as $book) { echo $book->getAuthor()->getFullName(); }
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!