国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

輕量級 PHP 框架 TinyLara 更新:更優雅 附中文介紹

loonggg / 697人閱讀

摘要:中文介紹是一個輕量級框架,基于,可以看成的精簡版。官方網站項目地址開始使用下載或者安裝依賴包修改數據庫配置文件,將導入數據庫。一行代碼即可發送郵件。協議采用協議分發,衍生項目除了必須采用協議之外無任何限制。

TinyLara

  ______    _                      __
 /_  __/   (_)   ____    __  __   / /   ____ _   _____  ____ _
  / /     / /   / __   / / / /  / /   / __ `/  / ___/ / __ `/
 / /     / /   / / / / / /_/ /  / /___/ /_/ /  / /    / /_/ /
/_/     /_/   /_/ /_/  \__, /  /_____/\__,_/  /_/     \__,_/
                      /____/
中文介紹

TinyLara 是一個輕量級 PHP 框架,基于 Composer,可以看成 Laravel 的精簡版。官方網站:http://tinylara.com/

Github

Github 項目地址:https://github.com/TinyLara/TinyLara

開始使用 下載:
git clone https://github.com/TinyLara/TinyLara
cd TinyLara

或者:

wget https://codeload.github.com/TinyLara/TinyLara/legacy.zip/master
unzip master
cd TinyLara*
安裝依賴包:
composer update

修改數據庫配置文件 app/database.php,將 demo.sql 導入數據庫。

查看代碼:

config/routes.php :

Route::get("", "HomeController@home");
更加優雅的郵件發送及視圖調用接口:

app/controllers/HomeController.php :

public function home()
{
  // mail sample
  Mail::to("foo@bar.io")->from("bar@foo.io")
                        ->title("Foo Bar")
                        ->content("Hello~~")
                        ->send();
  // redis sample
  Redis::set("key","value",3000,"ms");
  echo Redis::get("key");

  // view sample
  return View::make("home")->with("article",Article::first())
                            ->withTitle("TinyLara :-D")
                            ->withFooBar("foo_bar");
}
運行項目:
cd public && php -S 127.0.0.1:3000

訪問 http://127.0.0.1:3000/

TinyLara 已經跑起來了!


特性

微型路由包 TinyLara/TinyRoute, 基于性感而快速的 codingbean/macaw

MVC 架構

采用地球上最強大的 PHP ORM 之一:Laravel Eloquent

優雅而強大的 Laravel 式的視圖加載器

支持原生 PHP 操作 Redis,無需安裝任何 PHP 擴展。

一行代碼即可發送 SMTP 郵件。

協議

TinyLara 采用 MIT license 協議分發,衍生項目除了必須采用 MIT 協議之外無任何限制。


English Version

TinyLara is a Simple PHP Framework based on Composer, looks like a Tiny Laravel.

Start Download:
git clone https://github.com/TinyLara/TinyLara
cd TinyLara

OR:

wget https://codeload.github.com/TinyLara/TinyLara/legacy.zip/master
unzip master
cd TinyLara*
Install dependencies:
composer update

Then modify app/database.php with right information and import demo.sql.

Just see:

config/routes.php :

Route::get("", "HomeController@home");

app/controllers/HomeController.php :

public function home()
{
  // mail sample
  Mail::to("foo@bar.io")->from("bar@foo.io")
                        ->title("Foo Bar")
                        ->content("Hello~~")
                        ->send();
  // redis sample
  Redis::set("key","value",3000,"ms");
  echo Redis::get("key");

  // view sample
  return View::make("home")->with("article",Article::first())
                            ->withTitle("TinyLara :-D")
                            ->withFooBar("foo_bar");
}
Run:
cd public && php -S 127.0.0.1:3000

Visit http://127.0.0.1:3000/

It"s already running!


Features

Tiny router TinyLara/TinyRoute, based on fast and sexy codingbean/macaw

MVC architecture

One of the Most powerful PHP ORM on Earth: Laravel Eloquent

Powerful Laravel-style views loader

Redis ready in Laravel-style

Handy SMTP mailer

License

The TinyLara framework is open-sourced software licensed under the MIT license

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/20874.html

相關文章

  • 量級 PHP 框架 TinyLara 發布

    TinyLara showImg(http://lvwenhan.com/content/uploadfile/201410/dcd81414652600.png); ______ _ __ /_ __/ (_) ____ __ __ / / ____ _ __...

    CarlBenjamin 評論0 收藏0
  • 庫&插件&框架&工具

    摘要:一些有用的一些有用的,包括轉換小箭頭三角形媒體查詢等中文指南是當下最熱門的前端資源模塊化管理和打包工具。 nodejs 入門 nodejs 入門教程,大家可以在 github 上提交錯誤 2016 年最好用的表單驗證庫 SMValidator.js 前端表單驗證工具分享 淺談前端線上部署與運維 說到前端部署,可能大多數前端工程師在工作中都是使用的公司現成的部署系統,與SRE對接、一起完...

    Codeing_ls 評論0 收藏0
  • 庫&插件&框架&工具

    摘要:一些有用的一些有用的,包括轉換小箭頭三角形媒體查詢等中文指南是當下最熱門的前端資源模塊化管理和打包工具。 nodejs 入門 nodejs 入門教程,大家可以在 github 上提交錯誤 2016 年最好用的表單驗證庫 SMValidator.js 前端表單驗證工具分享 淺談前端線上部署與運維 說到前端部署,可能大多數前端工程師在工作中都是使用的公司現成的部署系統,與SRE對接、一起完...

    xiaowugui666 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<