创建和调用库

要在 CodeIgniter 中使用库,你需要创建一个库。

class Pro {
  function show_hello_world()
  {
    return 'Hello World';
  }
}

在这个名为 pro.php 的库中,必须将此文件添加到以下路径中。

路径: \ xampp \ htdocs \ project \ application \ libraries

现在你可以在控制器中使用它。在控制器中加载此库的代码:

$this->load->library('pro');

使用库函数的代码:

class Admin extends CI_Controller {
    function index()
    {
        $this->load->library('pro');
        echo $this->pro->show_hello_world();
    }
}