如何使用循环创建字段实例

时间:2017-09-19 14:22:22

标签: php

我有循环迭代列的列表,如何在使用此循环时获取所有Field:inst,因为我想用动态替换这些实例。

     for($i = 0; $i < sizeof($columns); $i++){

          $str .=  Field::inst( "'.$columns[$i].'" );
     }


     Editor::inst( $db, 'datatables_demo' )
            ->fields(

                Field::inst( 'first_name' ),
                Field::inst( 'last_name' ),
                Field::inst( 'position' ),
                Field::inst( 'email' ),
                Field::inst( 'office' ),
                Field::inst( 'extn' ),
                Field::inst( 'age' ),
                Field::inst( 'salary' ),
                Field::inst( 'start_date' )

            )
            ->process( $_POST )
            ->json();

喜欢这就是我想要的

     Field::inst( 'first_name' ) to
     Field::inst( $column[$i] )

0 个答案:

没有答案