수색…


통사론

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

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

  3. $ this-> load-> library ( 'cart'); # 헬퍼에 대한 $ this-> load-> helper ( 'helperName');

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

라이브러리 만들기 및 호출

CodeIgniter에서 라이브러리를 사용하려면 라이브러리를 만들어야합니다.

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

pro.php라는이 라이브러리에서이 파일을 다음 경로에 추가해야합니다.

경로 : \ xampp \ htdocs \ project \ application \ libraries

이제 컨트롤러에서 사용할 수 있습니다. 컨트롤러에서이 라이브러리를로드하는 코드 :

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

라이브러리 함수를 사용하는 코드 :

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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow