Suche…


Syntax

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

  2. $ this-> Bibliotheksname-> Funktionsname ();

  3. $ this-> load-> library ('cart'); # für Helfer $ this-> load-> Helper ('helperName');

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

Eine Bibliothek erstellen und aufrufen

Um Bibliotheken in CodeIgniter verwenden zu können, müssen Sie eine Bibliothek erstellen.

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

In dieser Bibliothek mit dem Namen pro.php muss diese Datei dem folgenden Pfad hinzugefügt werden.

Pfad: \ xampp \ htdocs \ project \ application \ libraries

Jetzt können Sie es in Ihrem Controller verwenden. Code zum Laden dieser Bibliothek in den Controller:

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

Code zur Verwendung der Bibliotheksfunktionen:

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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow