php相关程序员技术栈程序员

【PHP】Propel的使用,看这一篇就够了

2017-03-25  本文已影响153人  代码咖啡

写在前面

本文为学习Propel框架使用的笔记,默认已经安装好Propel环境,若有读者不知如何安装Propel,可参考《听说你PHP配置Composer遇到了一些困境》一文。

Propel初始化

执行propel init指令,进行Propel初始化,若读者执行该指令遇到问题可以参考《【PHP】使用Propel踩过的坑》一文。执行完propel init,需设置数据库类型、IP地址、端口号、数据库名、用户名、密码、编码方式,然后设置相应配置文件的存放位置和命名空间,如下图所示:

CRUD(增删改查)操作

<?php
$author = new Author();
$author->setFirstName('Jane');
$author->setLastName('Austen');
$author->save();

上述语句等效于:

INSERT INTO author (first_name, last_name) VALUES ('Jane', 'Austen');

通过setXXX()方法插入对应的列,括号中的参数表示插入的值;通过save()方法执行插入语句,这里表和列名都用小写字母+下划线的命名方式。

<?php
echo $author->getId();        // 1
echo $author->getFirstName(); // 'Jane'
echo $author->getLastName();  // 'Austen'

如果原来数据库表未定义id,则Propel会默认定义一个整型自增的id;通过getXXX()方法得到相应属性(列)的值。除了将属性一个一个显示出来,还提供了便捷的方法将对象以json、yaml、数组、XML、CVS和纯字符串的格式显示出来:

<?php
echo $author->toJSON();
echo $author->toArray();
echo $author->toXML();
echo $author->toYAML();
echo $author->toJSON();
echo $author->toCSV();
echo $author->__toString();

如果想把json数据转为一个对象,可以调用fromJSON(),对应的还有fromArray()fromXML()fromYAML()fromCSV()

<?php
$q = new AuthorQuery();
$firstAuthor = $q->findPK(1);

上述代码中AuthorQuery类是在命名空间文件夹里自动生成的。如笔者的命名空间为kq,所以在这个文件夹下会在执行propel init指令时自动生成各种XXXQuery类,如下图所示:


为了引入相关的类,需要将类所在的文件夹在PHP文件通过use引入:
use kq\kq; // use 文件夹\文件夹...;

而变量firstAuthor,如果有找到记录,则它是一个Author对象,如果没有找到,则它为NULL。上述代码实现的效果相当于:

SELECT author.id, author.first_name, author.last_name
FROM `author`
WHERE author.id = 1
LIMIT 1;

和Java语言类似,Propel也提供了工厂模式,上述语句也可以写成工厂模式的形式:

<?php
$firstAuthor = AuthorQuery::create()->findPK(1);

如果想要通过主键查找多条记录,则可以调用findPKs()方法,如下:

<?php
$selectedAuthors = AuthorQuery::create()->findPKs(array(1,2,3,4,5,6,7));

这时候selectedAuthors就是一个Author对象的集合。

<?php
$authors = AuthorQuery::create()->find();

上述查询得到的结果是author表的所有记录,如果想要通过类似于WHERE的Sql语法筛选记录,可以用filterByXXX()方法实现,其代码实现如下:

<?php
$authors = AuthorQuery::create()
      ->filterByFirstName('Jane')
      ->find();

上述代码得到的authors对象可用foreach来遍历:

foreach($authors as $author) {
        echo $author->getFirstName();
}

Sql语句中有ORDER BYLIMIT语法,在Propel中可通过orderByXXX()方法和limit()方法实现:

<?php
$authors = AuthorQuery::create()
      ->orderByLastName()
      ->limit(10)
      ->find();

如果想实现limit(1)的效果,可直接调用findOne()

<?php
$author = AuthorQuery::create()
      ->filterByFirstName('Jane')
      ->findOne();

上述语句可简写为一行:

<?php
$author = AuthorQuery::create()->findOneByFirstName('Jane');
<?php
use Propel\Runtime\Propel;
$con = Propel::getWriteConnection(\Map\BookTableMap::DATABASE_NAME);
$sql = "SELECT * FROM book WHERE id NOT IN "
        ."(SELECT book_review.book_id FROM book_review"
        ." INNER JOIN author ON (book_review.author_id=author.ID)"
        ." WHERE author.last_name = :name)";
$stmt = $con->prepare($sql);
$stmt->execute(array(':name' => 'Austen'));
// 上述代码执行的是查找作者姓氏不为`Austen`的书籍。

自定义Sql语句执行得到的是一个结果集(resultset),如果想把结果集转为对象,可以调用ObjectFormatter类的format方法:

<?php
use Propel\Runtime\Formatter\ObjectFormatter;
$con = Propel::getWriteConnection(\Map\BookTableMap::DATABASE_NAME);
$formatter = new ObjectFormatter();
$formatter->setClass('\Book'); 
$books = $formatter->format($con->getDataFetcher($stmt));

划重点:使用自定义的Sql语句需要注意以下三点:
* 结果集列必须是数字索引(The resultset columns must be numerically indexed)
* 结果集必须包含数据表的所有列,延迟加载的列除外(The resultset must contain all the columns of the table (except lazy-load columns))
* 结果集必须按照scheme.xml文件指定的顺序以相同排序方式排序(The resultset must have columns in the same order as they are defined in the schema.xml file)

PS: 对于上述第一点,笔者不理解其表达的意思,望过来人指点一二。
<?php
$author = AuthorQuery::create()->findOneByFirstName('Jane');
$author->setLastName('Austen');
$author->save();

除上述方法外,Propel提供了update()方法,直接对数据进行修改:

<?php
AuthorQuery::create()
      ->filterByFirstName('Jane')
      ->update(array('LastName' => 'Austen'));

官方推荐使用update()方法对数据做修改

<?php
$author = AuthorQuery::create()->findOneByFirstName('Jane');
$author->delete();

同样,上述代码还可以优雅地写为:

<?php
AuthorQuery::create()
      ->filterByFirstName('Jane')
      ->delete();

敲黑板!!!这里注意一点,被删除的对象(如上面代码中的author对象),依然可以通过getXXX()方法获取被删除的记录的属性值:

<?php
echo $author->isDeleted();    // true
echo $author->getFirstName(); // 'Jane'
<?php
$nbAuthors = AuthorQuery::create()->count();
<?php
$authorPager = AuthorQuery::create()->paginate($page = 1, $maxPerPage = 10);
foreach ($authorPager as $author) {
      echo $author->getFirstName();
}

pager对象可以有以下方法可以调用:

<?php
// total number of results if not paginated
echo $pager->getNbResults();
// 如果maxPerPage小于总的条数,则返回true;否则反之
echo $pager->haveToPaginate(); 
// 返回第一页记录
echo $pager->getFirstIndex(); 
// 返回最后一页记录
echo $pager->getLastIndex();
 // array of page numbers around the current page; useful to display pagination controls
$links = $pager->getLinks(5); 
# 对于第一个方法和最后一个方法,笔者担心自己误人子弟,读者们可以根据英文注解,实际动手写一下代码验证一下
<?php
$authors = AuthorQuery::create()
  ->limit(50000)
  ->setFormatter(ModelCriteria::FORMAT_ON_DEMAND) // just add this line
  ->find();
foreach ($authors as $author) {
      echo $author->getFirstName();
}

ModelCriteria::FORMAT_ON_DEMAND用在与对象相关的查询中,如果将查询到的数据存在数组中,可以使用ModelCriteria::FORMAT_ARRAY

<?php
// first call
$author1 = AuthorQuery::create()->findPk(1);
// Issues a SELECT query
...
// second call
$author2 = AuthorQuery::create()->findPk(1);
// Skips the SQL query and returns the existing $author1 object

参考链接

http://propelorm.org/documentation/03-basic-crud.html


笔者正在学习中,文章稍后更新...

上一篇下一篇

猜你喜欢

热点阅读