📜  CodeIgniter帮助器

📅  最后修改于: 2021-01-01 03:26:54             🧑  作者: Mango

CodeIgniter助手

什么是助手

在CodeIgniter中,有一些帮助程序可以帮助您完成不同的任务。每个帮助文件都是针对特定角色的功能的集合。其中一些帮助程序是“文件帮助程序”,可以帮助您处理文件,“文本帮助程序”用于执行各种文本格式设置例程,“表单帮助程序”用于创建表单元素,“ cookie帮助程序”设置并读取cookie,“ URL帮助程序” '有助于创建链接等。

辅助程序不是以面向对象的格式编写的,而是简单,相互独立的程序函数。

要使用帮助文件,您需要加载它。加载后,它对控制器和视图全局可用。它们位于CodeIgniter中的两个位置。 CodeIgniter将首先在application / helpers文件夹中寻找一个助手,如果找不到,则它将进入system / helpers文件夹。

加载助手

可以在控制器构造函数中加载帮助程序,从而使它们全局可用,也可以将其加载到需要它们的特定函数中。

可以加载以下代码:

$this->load->helper('file_name');

在此处将您的文件名写在file_name的位置。

要加载网址帮助器,

$this->load->helper('url');

您还可以通过在application / config / autoload.php文件中添加帮助程序来自动加载帮助程序(如果您的应用程序全局需要该帮助程序)。

加载多个助手

要加载多个助手,请在数组中指定它们,

$this->load->helper(
        array('helper1', 'helper2', 'helper3')
);

html Helper示例

我们将通过在基本的网站页面中使用它来向您展示html helper的示例。在这里,我们将自动加载我们的助手。

通过application / config / autoload.php转到autoload.php文件

$autoload['helper'] = array('html');

在上面的文件中,命名您的助手,这里是html。

应用程序/控制器中有文件Form.php

load->view('header');
        $this->load->view('nav');
        $this->load->view('content');
        $this->load->view('footer');
    }
}    
?>

应用程序/视图中有文件header.php

第一行代码在php标签中。




    Basic Site
    





下面的快照显示了文件header.php的另一半编码。

应用程序/视图中有文件content.php

这里的标题也是用php标签而不是html编写的。

In a professional context it often happens that private or corporate clients corder a publication to be made and presented with the actual content still not being ready. Think of a news blog that's filled with content hourly on the day of going live. However, reviewers tend to be distracted by comprehensible content, say, a random text copied from a newspaper or the internet. The are likely to focus on the text, disregarding the layout and its elements. Besides, random text risks to be unintendedly humorous or offensive, an unacceptable risk in corporate environments.

最终输出就像一个普通页面,如下所示,URL为localhost / helper / index.php / Form

但是,当我们看到其开源代码(通过按ctrl + u组合键)时,您将看到以下代码,该代码仅显示html代码而不是上面编写的php代码。