IMO它是一步一步地過渡到OOP方法絕對有效。
你的問題:
是的,你可以使用雄辯單機。
這裏是packagist網站:https://packagist.org/packages/illuminate/database 添加"illuminate/database": "5.0.*@dev"
您composer.json
和運行composer update
。 現在你需要引導雄辯。 (https://github.com/illuminate/database)
以下是從回購的自述複製:
使用說明
首先,創建一個新的「膠囊」管理器實例。 Capsule旨在儘可能簡化在Laravel框架之外配置庫的使用。
use Illuminate\Database\Capsule\Manager as Capsule;
$capsule = new Capsule;
$capsule->addConnection([
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'database',
'username' => 'root',
'password' => 'password',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
]);
// Set the event dispatcher used by Eloquent models... (optional)
use Illuminate\Events\Dispatcher;
use Illuminate\Container\Container;
$capsule->setEventDispatcher(new Dispatcher(new Container));
// Set the cache manager instance used by connections... (optional)
$capsule->setCacheManager(...);
// Make this Capsule instance available globally via static methods... (optional)
$capsule->setAsGlobal();
// Setup the Eloquent ORM... (optional; unless you've used setEventDispatcher())
$capsule->bootEloquent();
一旦Capsule實例已被註冊。你可以使用它像這樣:
使用查詢生成器
$users = Capsule::table('users')->where('votes', '>', 100)->get();
其他核心方法可以直接從膠囊中的相同方式從DB門面訪問:
$results = Capsule::select('select * from users where id = ?', array(1));
使用架構生成器
Capsule::schema()->create('users', function($table)
{
$table->increments('id');
$table->string('email')->unique();
$table->timestamps();
});
使用雄辯ORM
class User extends Illuminate\Database\Eloquent\Model {}
$users = User::where('votes', '>', 1)->get();
有關使用此庫提供的各種數據庫工具的更多文檔,請參閱Laravel框架文檔。
感謝詳細的答覆..我想知道,如果我們能夠創建)設置爲架構的別名膠囊::架構(,因此它可以使用同樣的方法,Laravel即模式::型號 - >行動()或Schema :: table() - > action()? – rolfk 2015-04-08 09:24:52
您可以創建一個Schema類並使用__callStatic將所有靜態方法調用重定向到Capsule :: schema() - > $ method'。 – 2015-07-21 08:31:24