Recherche…


Syntaxe

  1. $ this-> load-> library ('library_name');

  2. $ this-> nom_bibliothèque-> nom_fonction ();

  3. $ this-> load-> library ('cart'); # pour l'assistant $ this-> load-> helper ('helperName');

  4. $ this-> cart-> insert ($ Array);

Créer et appeler une bibliothèque

Pour utiliser des bibliothèques dans CodeIgniter, vous devez créer une bibliothèque.

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

Dans cette bibliothèque, appelée pro.php, ce fichier doit être ajouté au chemin suivant.

Chemin: \ xampp \ htdocs \ project \ application \ libraries

Maintenant, vous pouvez l'utiliser dans votre contrôleur. Code pour charger cette bibliothèque dans le contrôleur:

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

Code pour utiliser les fonctions de la bibliothèque:

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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow