用法

將孵化器載入到你的專案中

將以下程式碼行新增到你的載入程式檔案中

$loader = new Phalcon\Loader();

$loader->registerNamespaces([
    'Phalcon' => '/path/to/your/vendor/phalcon/incubator/Library/Phalcon/',
    // any other namespaces you have loaded
    // ...
]);

$loader->register();

現在,你可以使用普通的 Phalcon 名稱空間訪問所有 Incubator 功能:

\Phalcon\Acl\Adapter\Database;