使用关联数组中的所有内容创建文件并调用它?
Create file with all from associative arrays and call it?
我正在阅读 Codeigniter 的文档,但我没有找到创建 php 文件的方法,其中包含我将在我的网络系统中使用的所有关联数组以及调用它们的方法,我不喜欢在视图文件中包含大量代码,所以我想知道是否可行以及正确的方法。
提前谢谢大家!
已编辑
我想做这样的事情:
目录 config/array_forms.php
$input = array("name" => "MyInput", "id" => "MyInput", class="MyClass");
$another_input = array("name" => "another_input", id="another_input", class="MyClass");
目录 views/formview.php
//Way to make a call to the file with the arrays
$form_label("Input Label:");
$form_input($input);
$form_label("Another Input Label:");
$form_input($another_input);
我知道怎么做,而且非常简单,您必须创建一个包含所有关联数组的视图,然后将视图加载到您的控制器中。这是解决问题的简单方法。
感谢大家的配合。
我正在阅读 Codeigniter 的文档,但我没有找到创建 php 文件的方法,其中包含我将在我的网络系统中使用的所有关联数组以及调用它们的方法,我不喜欢在视图文件中包含大量代码,所以我想知道是否可行以及正确的方法。
提前谢谢大家!
已编辑
我想做这样的事情:
目录 config/array_forms.php
$input = array("name" => "MyInput", "id" => "MyInput", class="MyClass");
$another_input = array("name" => "another_input", id="another_input", class="MyClass");
目录 views/formview.php
//Way to make a call to the file with the arrays
$form_label("Input Label:");
$form_input($input);
$form_label("Another Input Label:");
$form_input($another_input);
我知道怎么做,而且非常简单,您必须创建一个包含所有关联数组的视图,然后将视图加载到您的控制器中。这是解决问题的简单方法。
感谢大家的配合。