CakePHP定义常量

Har*_*M V 6 php cakephp cakephp-2.1 cakephp-2.2

我想在我的应用中加入Google API.我想将Outh2 Key,Secret Key和Developer Keys定义为常量,我可以在App控制器中调用和使用它们.

哪个是定义相同的最佳位置?

Ric*_*ome 9

/app/Config/bootstrap.php

我不会将它们设置为常量,我会使用configure类来存储它们:

Configure::write(array(
    'outh2.key'=>'foo',
    'outh2.secret_key'=>'bar',
    'outh2.dev_key'=>'baz'
));

$key = Configure::read('outh2.key');
Run Code Online (Sandbox Code Playgroud)