0

我正在尝试使用数组来输出具有以下功能的表单:

public function createArrayForm($table, $do, $formDesc = '', $id, $array, $markFields = false) {
    if (!isset($table) && !isset($do)) {
        self::show_error('One or more parameters are missing in ' . __FUNCTION__);
    } elseif ($table == 'update' && !isset($id)) {
        self::show_error('For this form to be built, and ID must be set. Missing parameter `ID` in ' . __FUNCTION__);
    }
    if (is_array($array) && $do == 'insert') {
        $out .= '<form action="' . $_SERVER['PHP_SELF'] . '?id=' . $id . '&table=' . $table . '" method="post" class="form-horizontal" ' . $formAppend . '>';
        $out .= '<div class="form-desc">' . $formDesc . '</div>';
        $out .= $markFields ? '<h3>Input Fields</h3>' : '';
        foreach ($array as $type => $fieldname) {
            if ($type == 'input') {
                $out .= generateInputField($fieldname);
            }
        }
        $out .= $markFields ? '<h3>Content Fields</h3>' : '';
        foreach ($array as $type => $fieldname) {
            if ($type == 'textarea') {
                $out .= generateTextarea($fieldname, $cke);
            }
        }
        $out .= $markFields ? '<h3>Images Fields</h3>' : '';
        foreach ($array as $type => $fieldname) {
            if ($type == 'image') {
                $out .= generateImgField($fieldname);
            }
        }
        $out .= form_hidden('user_data', '1');
        $out .= form_hidden('id', self::generateID());
        $out .= form_close();
        return $out;
    }

并调用:

$arr = array("textarea"=>"project_name", "input"=>"created", "input"=>"last_modified", "input"=>"published");
echo $automate->createArrayForm('projects', 'insert', 'Some form desc', '123', $arr, true);

但它只输出:

在此处输入图像描述

当它看起来像这样时:

在此处输入图像描述

仅返回一个,例如输入。而不是它的所有实例。所以"input"=>"created", "input"=>"last_modified", "input"=>"published"应该做三个输入,但它只返回一个。

4

3 回答 3

1

您正在重复使用数组键。所以

$arr = array("textarea"=>"project_name", "input"=>"created", "input"=>"last_modified", "input"=>"published");

最终会看起来像这样:

$arr = array("textarea"=>"project_name", "input"=>"published");

相反,将您的代码修改为以下内容:

$arr = array("textarea"=>array("project_name"), "input"=>array("created", "last_modified", "published"));

然后获取这些单独的数组,并遍历它们。

foreach ($array['input'] as $fieldname) { // etc and so on
于 2013-08-06T16:02:28.120 回答
1

在 PHP 中,您不能拥有共享键的数组。

您最好创建一个简单的数组并创建子条目,以便您保持秩序,但可以有多个输入/文本区域。

像这样:

$arr = array(
    array('type' => 'textarea', 'name' => 'project_name'),
    array('type' => 'input', 'name' => 'created'),
    array('type' => 'input', 'name' => 'published'),
    array('type' => 'input', 'name' => 'last_modified')
)

这也将允许您添加比类型/名称更多的参数。

于 2013-08-06T16:05:58.567 回答
-1

问题是您对数组中的所有内容都使用相同的键。一种可能性是交换值和密钥

$arr = array("textarea"=>"project_name", "input"=>"created", "input"=>"last_modified", "input"=>"published");

[...]
foreach ($array as $fieldname => $type) {
    if ($type == 'textarea') {
        $out .= generateTextarea($fieldname, $cke);
    }
}
[...]
于 2013-08-06T16:06:56.700 回答