codeigniter
CIライブラリとヘルパーの使い方
サーチ…
構文
$ this-> load-> library( 'library_name');
$ this-> library_name-> function_name();
$ this-> load-> library( 'cart');ヘルパーのための#$ this-> load-> helper( 'helperName');
$ 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