0

假设我有一个像

function crear($first, $second, $third, $fourth, $fifth, $sixth){
    $sixth= ($sixth > 0 ? "<span class='required'>*</span>" : "");
    if($fourth=='input'){
        echo "\t   <div class='field-box ".$third."' id='".$first."_field_box'>  \n";
        echo "\t\t <div class='display-as-box' id='".$first."_display_as_box'>".$second."  ".$sixth.":</div>  \n";
        echo "\t\t <div class='input-box' id='".$first."_input_box'> \n";
        echo "\t\t <input id='field-".$first."' name='".$first."' type='text' maxlength='".$fifth."' /> </div><div class='clear'></div>  \n";
        echo "\t   </div>\n";
    }
}

我多次调用它:

crear('title1', 'Title 1','odd',  'input', '50', 0 );
crear('title2', 'Title 2','even', 'input', '50', 0 );
crear('title3', 'Title 3','odd',  'input', '30', 1 );
crear('title4', 'Title 4','even', 'input', '50', 0 );
crear('title5', 'Title 5','odd',  'select', '19', 1 );
crear('title6', 'Title 6','even', 'select', '19', 0 );

我怎么能只调用这个函数来传递所有这些数据。

我正在考虑创建一个数组,但我必须修改函数,最好的方法是什么......我可以轻松假设的唯一一个是奇数和偶数场,其他必须是变量。

4

1 回答 1

4

使用call_user_func_array()功能。这允许您将数组传递给通常只接受参数列表的函数。

因此,假设您的数组如下所示:(基于问题中的数据)

$input = array(
    array('title1', 'Title 1','odd',  'input', '50', 0 ),
    array('title2', 'Title 2','even', 'input', '50', 0 ),
    array('title3', 'Title 3','odd',  'input', '30', 1 ),
    array('title4', 'Title 4','even', 'input', '50', 0 ),
    array('title5', 'Title 5','odd',  'select', '19', 1 ),
    array('title6', 'Title 6','even', 'select', '19', 0 ),
);

您可以使用call_user_func_array()将数据传递到您的函数中,如下所示:

foreach($input as $data) {
    call_user_func_array('crear', $data);
}

call_user_func_array()您可以在 PHP 手册中找到更多信息:http: //php.net/manual/en/function.call-user-func-array.php

于 2013-03-25T16:15:16.287 回答