Buscar..


Sintaxis

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

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

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

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

Creando y llamando a una biblioteca

Para utilizar las bibliotecas en CodeIgniter, necesita crear una biblioteca.

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

En esta biblioteca, a la que se llama es pro.php, este archivo debe agregarse a la siguiente ruta.

Ruta: \ xampp \ htdocs \ project \ application \raries

Ahora puedes usarlo en tu controlador. Código para cargar esta librería en el controlador:

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

Código para usar las funciones de la biblioteca:

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
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow