1

我正在尝试实现 Php-form-b​​uilder 类,但我得到了

Fatal error: Class 'Form' not found in C:\wamp\www\project\admin\newpost.php on line 18

我正在使用 php 5.4.3 运行 apache 2.4.2,请任何有想法的人知道如何让它运行?

<?php
session_start();
error_reporting(E_ALL);
include("../PFBC/Form.php");

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled</title>
<link rel="stylesheet" type="text/css" href="style/index.css" />
</head>

<body>
<?php
$form = new Form("layout_grid", 500);

$form->configure(array(
    "view" => new View_Grid(array(2, 1, 3))
));
$form->addElement(new Element_Hidden("form", "layout_grid"));
$form->addElement(new Element_Textbox("Title:", "Title"));
$form->addElement(new Element_Textbox("First Name:", "FirstName"));
$form->addElement(new Element_Textbox("Last Name:", "LastName"));
$form->addElement(new Element_Textbox("City:", "City"));
$form->addElement(new Element_State("State:", "State"));
$form->addElement(new Element_Textbox("Zip Code:", "ZipCode"));
$form->addElement(new Element_Button);
$form->render();
?>

</body>
</html

>
4

2 回答 2

0

我猜你有问题namespaces

尝试:

$form = new PFBC\Form("layout_grid", 500);

你有 PHP5.3 的 PFBC 版本吗?

$form->addElement(new PFBC\Element\Hidden("form", "elements"));

于 2012-08-07T10:26:34.257 回答
0

有一种更短的方法可以实现几乎相同的目标。如果您正在使用PHP >= 5.3 ,只需在页面顶部添加“use”关键字,就在 session_start() 之后:

use PFBC\Form;

use PFBC\Element;

之后,您只需像已经完成的那样继续构建您的表单,您无需在每一行中添加额外的 PFBC\。这一切都在文档中。如果您在使用任何版本的 php 之前,5.3您需要下载替代包。

于 2014-02-03T22:45:06.540 回答