codeigniter
¿Cómo usar las bibliotecas y ayudantes de CI?
Buscar..
Sintaxis
$ this-> load-> library ('library_name');
$ this-> library_name-> function_name ();
$ this-> load-> library ('cart'); # para helper $ this-> load-> helper ('helperName');
$ 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