Sök…


Syntax

  1. $ This-> last> bibliotek (biblioteks ');

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

  3. $ This-> last> bibliotek (vagn '); # för helver $ this-> load-> helper ('helperName');

  4. $ This-> cart-> insatsen ($ Array);

Skapa och ringa ett bibliotek

För att kunna använda bibliotek i CodeIgniter måste du skapa ett bibliotek.

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

I det här biblioteket, som kallas pro.php, måste den här filen läggas till följande sökväg.

Sökväg: \ xampp \ htdocs \ projekt \ applikation \ bibliotek

Nu kan du använda den i din controller. Kod för att ladda detta bibliotek i styrenheten:

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

Kod för att använda bibliotekets funktioner:

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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow