Zoeken…


Syntaxis

  1. $ This-> load-> library ( 'LIBRARY_NAME');

  2. $ This-> library_name-> function_name ();

  3. $ This-> load-> library ( 'cart'); # voor helper $ this-> load-> helper ('helperName');

  4. $ This-> winkelwagen-> inzetstuk ($ Array);

Een bibliotheek maken en oproepen

Als u bibliotheken in CodeIgniter wilt gebruiken, moet u een bibliotheek maken.

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

In deze bibliotheek, die pro.php wordt genoemd, moet dit bestand aan het volgende pad worden toegevoegd.

Pad: \ xampp \ htdocs \ project \ application \ bibliotheken

Nu kunt u het gebruiken in uw controller. Code om deze bibliotheek in de controller te laden:

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

Code om de bibliotheekfuncties te gebruiken:

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


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow