form.php

来自「Bug tracker, and reporter.」· PHP 代码 · 共 87 行

PHP
87
字号
<?php/** * Zend Framework * * LICENSE * * This source file is subject to version 1.0 of the Zend Framework * license, that is bundled with this package in the file LICENSE.txt, and * is available through the world-wide-web at the following URL: * http://framework.zend.com/license/new-bsd. If you did not receive * a copy of the Zend Framework license and are unable to obtain it * through the world-wide-web, please send a note to license@zend.com * so we can mail you a copy immediately. * * @category   Zend * @package    Zend_View * @subpackage Helper * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @version    $Id: Form.php 8489 2008-02-29 21:37:24Z matthew $ * @license    http://framework.zend.com/license/new-bsd     New BSD License *//** Zend_View_Helper_FormElement */require_once 'Zend/View/Helper/FormElement.php';/** * Helper for rendering HTML forms * * @package    Zend_View * @subpackage Helper * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @license    http://framework.zend.com/license/new-bsd     New BSD License */class Zend_View_Helper_Form extends Zend_View_Helper_FormElement{    /**     * @var Zend_View_Instance     */    public $view;    /**     * Set view object     *      * @param  Zend_View_Interface $view      * @return Zend_View_Helper_Form     */    public function setView(Zend_View_Interface $view)    {        $this->view = $view;        return $this;    }    /**     * Render HTML form     *     * @param  string $name Form name     * @param  null|array $attribs HTML form attributes     * @param  false|string $content Form content     * @return string     */    public function form($name, $attribs = null, $content = false)    {        $info = $this->_getInfo($name, $content, $attribs);        extract($info);        if (!empty($name)) {            $name = ' name="' . $this->view->escape($name) . '"';        }        if (!empty($id)) {            $id = ' id="' . $this->view->escape($id) . '"';        }        $xhtml = '<form'               . $name               . $id               . $this->_htmlAttribs($attribs)               . '>';        if (false !== $content) {            $xhtml .= $content                   .  '</form>';        }        return $xhtml;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?