欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Zend Framework开发入门经典教程

程序员文章站 2023-12-15 21:18:04
本文讲述了zend framework开发入门相关知识点。分享给大家供大家参考,具体如下: zend framework发布了!虽然仍处于开发初期,这个教程仍突出讲解目前...

本文讲述了zend framework开发入门相关知识点。分享给大家供大家参考,具体如下:

zend framework发布了!虽然仍处于开发初期,这个教程仍突出讲解目前几个最好的功能,并指导你完成一个简单程序的构建。

zend最早在社区里发布了zf。基于同样的想法,这个教程写来用于展示zf现有的功能。由于这个教程是在线发布,我将在zf变化时对其进行更新,以便尽可能有效。

要求

zend framework要求php5。为了更好利用本教程的代码,你还需要apache网页服务器。因为示范程序(一个新闻管理系统)用到了mod_rewrite。

这个教程的代码可以*下载,所以你可以自己试一下。你可以从brain buld的网站下载到代码:http://brainbulb.com/zend-framework-tutorial.tar.gz。

下载zf

当你开始这篇教程时,你需要下载zf的最新版本。你可以用浏览器手工从http://framework.zend.com/download选择tar.gz或zip文件进行下载,或者使用下列命令:

$ wget http://framework.zend.com/download/tgz
$ tar -xvzf zendframework-0.1.2.tar.gz

提示:zend计划提供自有pear通道简化下载。

一旦你下载了预览版,把library目录放到方便的地方。在这个教程,我把library重命名为lib以便有个简洁的目录结构:

app/
    views/
    controllers/
www/
    .htaccess
    index.php
lib/

www目录是文档根目录,controllers和views目录是以后会用到的空目录,而lib目录来自你下载的预览版。

开始

我要介绍的第一个组件是zend_controller。从很多方面看,它为你开发的程序提供了基础,同时也部分决定了zend framework不只是个组件的集合。但是,你在用之前需要将所有的得到的请求都放到一个简单的php脚本。本教程用的是mod_rewrite。

用mod_rewrite自身是一种艺术,但幸运的是,这个特殊的任务特别简单。如果你对mod_rewrite或apache的一般配置不熟悉,在文档根目录下创建一个.htaccess文件,并添加以下内容:

rewriteengine on
rewriterule !/.(js|ico|gif|jpg|png|css)$ index.php

提示: zend_controller的一个todo项目就是取消对mod_rewrite的依赖。为了提供一个预览版的范例,本教程用了mod_rewrite。

如果你直接把这些内容添加到httpd.conf,你必须重启网页服务器。但如果你用.htaccess文件,则什么都不必做。你可以放一些具体的文本到index.php并访问任意路径如/foo/bar做一下快速测试。如你的域名为example.org,则访问http://example.org/foo/bar。

你还要设置zf库的路径到include_path。你可以在php.ini设置,也可以直接在你的.htaccess文件放下列内容:

php_value include_path "/path/to/lib"

zend

zend类包含了一些经常使用的静态方法的集合。下面是唯一一个你要手工添加的类:

<?php
include 'zend.php';
?>

一旦你包含了zend.php,你就已经包含了zend类的所有的类方法。用loadclass()就可以简单地加载其它类。例如,加载zend_controller_front类:

<?php
include 'zend.php';
zend::loadclass('zend_controller_front');
?>

include_path能理解loadclass()及zf的组织和目录结构。我用它加载所有其它类。  

zend_controller

使用这个controller非常直观。事实上,我写本教程时并没有用到它丰富的文档。

提示:文档目前已经可以在http://framework.zend.com/manual/zend.controller.html看到。

我一开始是用一个叫zend_controller_front的front controller。为了理解它是怎么工作的,请把下列代码放在你的index.php文件:

<?php
include 'zend.php';
zend::loadclass('zend_controller_front');
$controller = zend_controller_front::getinstance();
$controller->setcontrollerdirectory('/path/to/controllers');
$controller->dispatch();
?>

如果你更喜欢对象链结,可以用以下代码代替:

<?php
include 'zend.php';
zend::loadclass('zend_controller_front');
$controller = zend_controller_front::getinstance()
       ->setcontrollerdirectory('/path/to/controllers')
       ->dispatch();
?>

现在如果你访问/foo/bar,会有错误发生。没错!它让你知道发生了什么事。主要的问题是找不到indexcontroller.php文件。

在你创建这个文件之前,应先理解一下zf想让你怎样组织这些事情。zf把访问请求给拆分开来。假如访问的是/foo/bar,则foo是controller,而bar是action。它们的默认值都是index.

如果foo是controller,zf就会去查找controllers目录下的foocontroller.php文件。因为这个文件不存在,zf就退回到indexcontroller.php。结果都没有找到,就报错了。

接下来,在controllers目录创建indexcontroller.php文件(可以用setcontrollerdirectory()设置):

<?php
zend::loadclass('zend_controller_action');
class indexcontroller extends zend_controller_action 
{
  public function indexaction()
  {
    echo 'indexcontroller::indexaction()';
  }
}
?>

就如刚才说明的,indexcontroller类处理来自index controller或controller不存在的请求。indexaction()方法处理action为index的访问。要记住的是index是controller和action的默认值。如果你访问/,/index或/index/index,indexaction()方法就会被执行。 (最后面的斜杠并不会改变这个行为。) 而访问其他任何资源只会导致出错。

在继续做之前,还要在indexcontroller加上另外一个有用的类方法。不管什么时候访问一个不存在的控制器,都要调用norouteaction()类方法。例如,在foocontroller.php不存在的条件下,访问/foo/bar就会执行norouteaction()。但是访问/index/foo仍会出错,因为foo是action,而不是controller.

将norouteaction()添加到indexcontroller.php:

<?php
zend::loadclass('zend_controller_action');
class indexcontroller extends zend_controller_action 
{
  public function indexaction()
  {
    echo 'indexcontroller::indexaction()';
  }
  public function norouteaction()
  {
    $this->_redirect('/');
  }
}
?>

例子中使用$this->_redirect('/')来描述执行norouteaction()时,可能发生的行为。这会将对不存在controllers的访问重定向到根文档(首页)。

现在创建foocontroller.php:

<?php
zend::loadclass('zend_controller_action');
class foocontroller extends zend_controller_action 
{
  public function indexaction()
  {
    echo 'foocontroller::indexaction()';
  }
  public function baraction()
  {
    echo 'foocontroller::baraction()';
  }
}
?>

如果你再次访问/foo/bar,你会发现执行了baraction(),因为bar是action。现在你不只支持了友好的url,还可以只用几行代码就做得这么有条理。酷吧!
你也可以创建一个__call()类方法来处理像/foo/baz这样未定义的action。

<?php
zend::loadclass('zend_controller_action');
class foocontroller extends zend_controller_action 
{
  public function indexaction()
  {
    echo 'foocontroller::indexaction()';
  }
  public function baraction()
  {
    echo 'foocontroller::baraction()';
  }
  public function __call($action, $arguments)
  {
    echo 'foocontroller:__call()';
  }
}
?>

现在你只要几行代码就可以很好地处理用户的访问了,准备好继续。

zend_view

zend_view是一个用来帮助你组织好你的view逻辑的类。这对于模板-系统是不可知的,为了简单起见,本教程不使用模板。如果你喜欢的话,不妨用一下。

记住,现在所有的访问都是由front controller进行处理。因此应用框架已经存在了,另外也必须遵守它。为了展示zend_view的一个基本应用,将indexcontroller.php修改如下:

<?php
zend::loadclass('zend_controller_action');
zend::loadclass('zend_view');
class indexcontroller extends zend_controller_action 
{
  public function indexaction()
  {
    $view = new zend_view();
    $view->setscriptpath('/path/to/views');
    echo $view->render('example.php');
  }
  public function norouteaction()
  {
    $this->_redirect('/');
  }
}
?>

在views目录创建example.php文件:

<html>
<head>
  <title>this is an example</title>
</head>
<body>
  <p>this is an example.</p>
</body>
</html>

现在,如果你访问自己网站的根资源,你会看到example.php的内容。这仍没什么用,但你要清楚你要在以一种结构和组织非常清楚的方式在开发网络应用。

为了让zend_view的应用更清楚一点,,修改你的模板(example.php)包含以下内容:

<html>
<head>
  <title><?php echo $this->escape($this->title); ?></title>
</head>
<body>
  <?php echo $this->escape($this->body); ?>
</body>
</html>

现在已经添加了两个功能。$this->escape()类方法用于所有的输出。即使你自己创建输出,就像这个例子一样。避开所有输出也是一个很好的习惯,它可以在默认情况下帮助你防止跨站脚本攻击(xss)。

$this->title和$this->body属性用来展示动态数据。这些也可以在controller中定义,所以我们修改indexcontroller.php以指定它们:

<?php
zend::loadclass('zend_controller_action');
zend::loadclass('zend_view');
class indexcontroller extends zend_controller_action 
{
  public function indexaction()
  {
    $view = new zend_view();
    $view->setscriptpath('/path/to/views');
    $view->title = 'dynamic title';
    $view->body = 'this is a dynamic body.';
    echo $view->render('example.php');
  }
  public function norouteaction()
  {
    $this->_redirect('/');
  }
}
?>

现在你再次访问根目录,应该就可以看到模板所使用的这些值了。因为你在模板中使用的$this就是在zend_view范围内所执行的实例。

要记住example.php只是一个普通的php脚本,所以你完全可以做你想做的。只是应努力只在要求显示数据时才使用模板。你的controller (controller分发的模块)应处理你全部的业务逻辑。

在继续之前,我想做最后一个关于zend_view的提示。在controller的每个类方法内初始化$view对象需要额外输入一些内容,而我们的主要目标是让快速开发网络应用更简单。如果所有模板都放在一个目录下,是否要在每个例子中都调用setscriptpath()也存在争议。

幸运的是,zend类包含了一个寄存器来帮助减少工作量。你可以用register()方法把你的$view对象存储在寄存器:

<?php
zend::register('view', $view);
?>

用registry()方法进行检索:

<?php
$view = zend::registry('view');
?>

基于这点,本教程使用寄存器。 

zend_inputfilter

本教程讨论的最后一个组件是zend_inputfilter。这个类提供了一种简单而有效的输入过滤方法。你可以通过提供一组待过滤数据来进行初始化。

<?php
$filterpost = new zend_inputfilter($_post);
?>

这会将($_post)设置为null,所以就不能直接进入了。zend_inputfilter提供了一个简单、集中的根据特定规则过滤数据的类方法集。例如,你可以用getalpha()来获取$_post['name']中的字母:

<?php
/* $_post['name'] = 'john123doe'; */
$filterpost = new zend_inputfilter($_post);
/* $_post = null; */
$alphaname = $filterpost->getalpha('name');
/* $alphaname = 'johndoe'; */
?>

每一个类方法的参数都是对应要过滤的元素的关键词。对象(例子中的$filterpost)可以保护数据不被篡改,并能更好地控制对数据的操作及一致性。因此,当你操纵输入数据,应始终使用zend_inputfilter。

提示:zend_filter提供与zend_inputfilter方法一样的静态方法。

构建新闻管理系统

虽然预览版提供了许多组件(甚至许多已经被开发),我们已经讨论了构建一个简单程序所需要的全部组件。在这里,你会对zf的基本结构和设计有更清楚的理解。

每个人开发的程序都会有所不同,而zend framework试图包容这些差异。同样,这个教程是根据我的喜好写的,请根据自己的偏好自行调整。

当我开发程序时,我会先做界面。这并不意味着我把时间都花在标签、样式表和图片上,而是我从一个用户的角度去考虑问题。因此我把程序看成是页面的集合,每一页都是一个独立的网址。这个新闻系统就是由以下网址组成的:

/
/add/news
/add/comment
/admin
/admin/approve
/view/{id}

你可以直接把这些网址和controller联系起来。indexcontroller列出新闻,addcontroller添加新闻和评论,admincontroller处理一些如批准新闻之类的管理,viewcontroller特定新闻和对应评论的显示。

如果你的foocontroller.php还在,把它删除。修改indexcontroller.php,为业务逻辑以添加相应的action和一些注释:

<?php
zend::loadclass('zend_controller_action');
class indexcontroller extends zend_controller_action 
{
  public function indexaction()
  {
    /* list the news. */
  }
  public function norouteaction()
  {
    $this->_redirect('/');
  }
}
?>

接下来,创建addcontroller.php文件:

<?php
zend::loadclass('zend_controller_action');
class addcontroller extends zend_controller_action
{
  function indexaction()
  {
    $this->_redirect('/');
  }
  function commentaction()
  {
    /* add a comment. */
  }
  function newsaction()
  {
    /* add news. */
  }
  function __call($action, $arguments)
  {
    $this->_redirect('/');
  }
}
?>

记住addcontroller的indexaction()方法不能调用。当访问/add时会执行这个类方法。因为用户可以手工访问这个网址,这是有可能的,所以你要把用户重定向到主页、显示错误或你认为合适的行为。

接下来,创建admincontroller.php文件:

<?php
zend::loadclass('zend_controller_action');
class admincontroller extends zend_controller_action
{
  function indexaction()
  {
    /* display admin interface. */
  }
  function approveaction()
  {
    /* approve news. */
  }
  function __call($action, $arguments)
  {
    $this->_redirect('/');
  }
}
?>

最后,创建viewcontroller.php文件:

<?php
zend::loadclass('zend_controller_action');
class viewcontroller extends zend_controller_action
{
  function indexaction()
  {
    $this->_redirect('/');
  }
  function __call($id, $arguments)
  {
    /* display news and comments for $id. */
  }
}
?>

和addcontroller一样,index()方法不能调用,所以你可以使用你认为合适的action。viewcontroller和其它的有点不同,因为你不知道什么才是有效的action。为了支持像/view/23这样的网址,你要使用__call()来支持动态action。

数据库操作

因为zend framework的数据库组件还不稳定,而我希望这个演示可以做得简单一点。我使用了一个简单的类,用sqlite进行新闻条目和评论的存储和查询。

<?php
class database
{
  private $_db;
  public function __construct($filename)
  {
    $this->_db = new sqlitedatabase($filename);
  }
  public function addcomment($name, $comment, $newsid)
  {
    $name = sqlite_escape_string($name);
    $comment = sqlite_escape_string($comment);
    $newsid = sqlite_escape_string($newsid);
    $sql = "insert
        into  comments (name, comment, newsid)
        values ('$name', '$comment', '$newsid')";
    return $this->_db->query($sql);
  }
  public function addnews($title, $content)
  {
    $title = sqlite_escape_string($title);
    $content = sqlite_escape_string($content);
    $sql = "insert
        into  news (title, content)
        values ('$title', '$content')";
    return $this->_db->query($sql);
  }
  public function approvenews($ids)
  {
    foreach ($ids as $id) {
      $id = sqlite_escape_string($id);
      $sql = "update news
          set  approval = 't'
          where id = '$id'";
      if (!$this->_db->query($sql)) {
        return false;
      }
    }
    return true;
  }
  public function getcomments($newsid)
  {
    $newsid = sqlite_escape_string($newsid);
    $sql = "select name, comment
        from  comments
        where newsid = '$newsid'";
    if ($result = $this->_db->query($sql)) {
      return $result->fetchall();
    }
    return false;
  }
  public function getnews($id = 'all')
  {
    $id = sqlite_escape_string($id);
    switch ($id) {
      case 'all':
        $sql = "select id,
                title
            from  news
            where approval = 't'";
        break;
      case 'new':
        $sql = "select *
            from  news
            where approval != 't'";
        break;
      default:
        $sql = "select *
            from  news
            where id = '$id'";
        break;
    }
    if ($result = $this->_db->query($sql)) {
      if ($result->numrows() != 1) {
        return $result->fetchall();
      } else {
        return $result->fetch();
      }
    }
    return false;
  }
}
?>

(你可以用自己的解决方案随意替换这个类。这里只是为你提供一个完整示例的介绍,并非建议要这么实现。)

这个类的构造器需要sqlite数据库的完整路径和文件名,你必须自己进行创建。

<?php
$db = new sqlitedatabase('/path/to/db.sqlite');
$db->query("create table news (
    id    integer primary key,
    title  varchar(255),
    content text,
    approval char(1) default 'f'
  )");
$db->query("create table comments (
    id    integer primary key,
    name   varchar(255),
    comment text,
    newsid  integer
  )");
?>

你只需要做一次,以后直接给出database类构造器的完整路径和文件名即可:

<?php
$db = new database('/path/to/db.sqlite');
?>

整合

为了进行整合,在lib目录下创建database.php,loadclass()就可以找到它。你的index.php文件现在就会初始化$view和$db并存储到寄存器。你也可以创建__autoload()函数自动加载你所需要的类:

<?php
include 'zend.php';
function __autoload($class)
{
  zend::loadclass($class);
}
$db = new database('/path/to/db.sqlite');
zend::register('db', $db);
$view = new zend_view;
$view->setscriptpath('/path/to/views');
zend::register('view', $view);
$controller = zend_controller_front::getinstance()
       ->setcontrollerdirectory('/path/to/controllers')
       ->dispatch();
?>

接下来,在views目录创建一些简单的模板。index.php可以用来显示index视图:

<html>
<head>
 <title>news</title>
</head>
<body>
 <h1>news</h1>
 <?php foreach ($this->news as $entry) { ?>
 <p>
  <a href="/view/<?php echo $this->escape($entry['id']); ?>">
  <?php echo $this->escape($entry['title']); ?>
  </a>
 </p>
 <?php } ?>
 <h1>add news</h1>
 <form action="/add/news" method="post">
 <p>title:<br /><input type="text" name="title" /></p>
 <p>content:<br /><textarea name="content"></textarea></p>
 <p><input type="submit" value="add news" /></p>
 </form>
</body>
</html>

view.php模板可以用来显示选定的新闻条目:

<html>
<head>
 <title>
  <?php echo $this->escape($this->news['title']); ?>
 </title>
</head>
<body>
 <h1>
  <?php echo $this->escape($this->news['title']); ?>
 </h1>
 <p>
  <?php echo $this->escape($this->news['content']); ?>
 </p>
 <h1>comments</h1>
 <?php foreach ($this->comments as $comment) { ?>
 <p>
  <?php echo $this->escape($comment['name']); ?> writes:
 </p>
 <blockquote>
  <?php echo $this->escape($comment['comment']); ?>
 </blockquote>
 <?php } ?>
 <h1>add a comment</h1>
 <form action="/add/comment" method="post">
 <input type="hidden" name="newsid" 
  value="<?php echo $this->escape($this->id); ?>" />
 <p>name:<br /><input type="text" name="name" /></p>
 <p>comment:<br /><textarea name="comment"></textarea></p>
 <p><input type="submit" value="add comment" /></p>
 </form>
</body>
</html>

最后,admin.php模板可以用来批准新闻条目:

<html>
<head>
 <title>news admin</title>
</head>
<body>
 <form action="/admin/approve" method="post">
 <?php foreach ($this->news as $entry) { ?>
 <p>
  <input type="checkbox" name="ids[]"
  value="<?php echo $this->escape($entry['id']); ?>" />
  <?php echo $this->escape($entry['title']); ?>
  <?php echo $this->escape($entry['content']); ?>
 </p>
 <?php } ?>
 <p>
  password:<br /><input type="password" name="password" />
 </p>
 <p><input type="submit" value="approve" /></p>
 </form>
</body>
</html>

提示:为了保持简单,这个表单用密码作为验证机制。

使用到模板的地方,你只需要把注释替换成几行代码。如indexcontroller.php就变成下面这样:

<?php
class indexcontroller extends zend_controller_action 
{
  public function indexaction()
  {
    /* list the news. */
    $db = zend::registry('db');
    $view = zend::registry('view');
    $view->news = $db->getnews();
    echo $view->render('index.php');
  }
  public function norouteaction()
  {
    $this->_redirect('/');
  }
}
?>

因为条理比较清楚,这个程序首页的整个业务逻辑只有四行代码。addcontroller.php更复杂一点,它需要更多的代码:

<?php
class addcontroller extends zend_controller_action
{
  function indexaction()
  {
    $this->_redirect('/');
  }
  function commentaction()
  {
    /* add a comment. */
    $filterpost = new zend_inputfilter($_post);
    $db = zend::registry('db');
    $name = $filterpost->getalpha('name');
    $comment = $filterpost->notags('comment');
    $newsid = $filterpost->getdigits('newsid');
    $db->addcomment($name, $comment, $newsid);
    $this->_redirect("/view/$newsid");
  }
  function newsaction()
  {
    /* add news. */
    $filterpost = new zend_inputfilter($_post);
    $db = zend::registry('db');
    $title = $filterpost->notags('title');
    $content = $filterpost->notags('content');
    $db->addnews($title, $content);
    $this->_redirect('/');
  }
  function __call($action, $arguments)
  {
    $this->_redirect('/');
  }
}
?>

因为用户在提交表单后被重定向,这个controller不需要视图。

在admincontroller.php,你要处理显示管理界面和批准新闻两个action:

<?php
class admincontroller extends zend_controller_action
{
  function indexaction()
  {
    /* display admin interface. */
    $db = zend::registry('db');
    $view = zend::registry('view');
    $view->news = $db->getnews('new');
    echo $view->render('admin.php');
  }
  function approveaction()
  {
    /* approve news. */
    $filterpost = new zend_inputfilter($_post);
    $db = zend::registry('db');
    if ($filterpost->getraw('password') == 'mypass') {
      $db->approvenews($filterpost->getraw('ids'));
      $this->_redirect('/');
    } else {
      echo 'the password is incorrect.';
    }
  }
  function __call($action, $arguments)
  {
    $this->_redirect('/');
  }
}
?>

最后是viewcontroller.php:

<?php
class viewcontroller extends zend_controller_action
{
  function indexaction()
  {
    $this->_redirect('/');
  }
  function __call($id, $arguments)
  {
    /* display news and comments for $id. */
    $id = zend_filter::getdigits($id);
    $db = zend::registry('db');
    $view = zend::registry('view');
    $view->news = $db->getnews($id);
    $view->comments = $db->getcomments($id);
    $view->id = $id;
    echo $view->render('view.php');
  }
}
?>

虽然很简单,但我们还是提供了一个功能较全的新闻和评论程序。最好的地方是由于有较好的设计,增加功能变得很简单。而且随着zend framework越来越成熟,只会变得更好。

更多信息

这个教程只是讨论了zf表面的一些功能,但现在也有一些其它的资源可供参考。在http://framework.zend.com/manual/有手册可以查询,rob allen在http://akrabat.com/zend-framework/介绍了一些他使用zend framework的经验,而richard thomas也在http://www.cyberlot.net/zendframenotes提供了一些有用的笔记。如果你有自己的想法,可以访问zend framework的新论坛:http://www.phparch.com/discuss/index.php/f/289//。

结束语

要对预览版进行评价是很容易的事,我在写这个教程时也遇到很多困难。总的来说,我想zend framework显示了承诺,加入的每个人都是想继续完善它。

更多关于zend相关内容感兴趣的读者可查看本站专题:《zend framework框架入门教程》、《php优秀开发框架总结》、《yii框架入门及常用技巧总结》、《thinkphp入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家基于zend framework框架的php程序设计有所帮助。

上一篇:

下一篇: