1

我需要获取 redbean instacne 并将其传递给我需要的模型函数。该文档说明了一种方法。

$toolbox = RedBean_Setup::kickstart('mysql:host=localhost;dbname=demo','root','');
$redbean = $toolbox->getRedBean();

但它不起作用。它给了我错误

Fatal error: Call to a member function getRedBean() on a non-object in ...

我可以看到方法在那里。我怎么能做到这一点?

4

2 回答 2

3

在对源代码进行少量挖掘后,我找到了解决方案。可以通过以下方式获取。它接缝应该将其添加到 RedBean 文档中。

R::setup('mysql:host=localhost;dbname=t2odemo','root','');
$toolbox = R::$toolbox;
$redbean = $toolbox->getRedBean();
于 2013-07-10T12:07:43.380 回答
0

如果有人还在外面试图获取redBean实例,这对我有用(版本 4.3.2):

R::setup(...credentials stuff);
$redBean = R::getToolBox();
$rbInstance = $redBean->getDatabaseAdapter();
于 2016-08-08T05:26:43.360 回答