cisetup
Stable
是一個codeigniter 3框架,經過修改並添加了新功能,如dotenv、sweet Alert 2 & bootstrap 4等。
使用 Composer 安裝cisetup 。
composer create-project kubi/ cisetup
更新依賴關係。
composer install
在 .env 中設定 dotenv 文件
APP_URL = http://localhost/Kubi_codes/cisetup/
APP_TIMEZONE = Asia/Jakarta
DB_HOST = localhost
DB_USERNAME = root
DB_PASSWORD =
DB_DATABASE =
DB_DRIVER = mysqli
<?php echos ( $ foobar ); ?>
<img src=" <?= asset_url() . 'img/foobar.png' ?> ">
APP_TIMEZONE = Asia/Jakarta
getenv('APP_TIMEZONE');
將此程式碼加入html <head>
上方
<?php table_url (); ?>
之後使用表函數建立一個表
table ( $ table_title , $ table_key , $ table_data )
範例:在控制器中
$ data [ ' table_title ' ] = ' data_table ' ;
$ data [ ' table_key ' ] = [ ' ID ' , ' Category Name ' , ' Product Name ' , ' Cashier Name ' ];
$ data [ ' table_data ' ] = $ this -> db -> get ( ' product ' )-> result_array ();
在視圖中
< ?php
table($table_title, $table_key, $table_data);
? >
notif ( ' type ' , ' title ' , ' message ' , ' url ' );
例子
notif ( ' success ' , ' Login Success ' , ' Welcome to app ' , ' home/user ' );
HTTP 請求 GET
request_get ( $ url );
HTTP 請求 POST
request_post ( $ url , $ query );
HTTP 請求 PUT
request_put ( $ url , $ query );
HTTP 請求刪除
request_delete ( $ url );
例子
在你的控制器中
public function index ()
{
// Use notif
notif ( ' success ' , ' Welcome to kubicode ' , ' This is the message from Home/index ' );
// Data for send to view
$ data [ ' title ' ] = ' Home | Kubi Code ' ;
$ data [ ' response ' ] = request_get ( ' https://jsonplaceholder.typicode.com/todos ' );
// Load view
$ this -> load -> view ( ' layouts/header ' , $ data );
$ this -> load -> view ( ' home/index ' );
$ this -> load -> view ( ' layouts/footer ' );
}
歡迎請求請求。對於重大更改,請先開啟一個問題來討論您想要更改的內容。
請確保適當更新測試。
麻省理工學院