我使用idiORM类遇到了一个问题。 (文档见{} http://idiorm.readthedocs.org/en/latest/)
我正在尝试获取某个查询的计数,同时保留原始查询以进行进一步处理,因此我只是将原始查询复制到第二个变量中,但似乎只要我执行count()
方法他将所有内容复制到另一个变量。
例如,我创建一个查询并将返回的ORM对象保存到变量$ormResults
中并将其复制到$copy
:
$ormResults = ORM::for_table('department')->where('company', '4');
$this->_orginalResults = $ormResults;
// Copy the ORM object into $copy
$copy = $ormResults;
$this->resultCount = $copy->count();
直到这里工作正常,预期的计数结果正确存储在$this->resultCount
中。但是,当我现在var转储(直到现在)未使用的变量$this->_orginalResults
时,它还包含count()
属性,这些属性令我感到困惑,因为我根本没有使用它。
protected '_resultColumns' =>
array
0 => string 'COUNT(*) AS `count`' (length=19)
当我尝试执行$this->_originalResults->findMany();
时会导致麻烦。
这是因为count()
方法返回ORM对象吗?据我所知,PHP代码不会向上传播..是吗?
所以Tl;博士:
$test = ORM::forTable('departments')->where('company', '8');
$test2 = $test;
// Works
var_dump($test->count());
// Fails
var_dump($test2->findMany());
然而,这完全正常:
$test = ORM::forTable('departments')->where('company', '8');
$test2 = ORM::forTable('departments')->where('company', '8');
var_dump($test->count());
var_dump($test2->findMany());
非常感谢任何见解/帮助。
答案 0 :(得分:2)
好的想通了,显然有些静态变量正在破坏它。
使用clone
复制对象非常有效。
$test = ORM::forTable('departments')->where('company', '8');
$test2 = clone $test;
var_dump($test->count());
var_dump($test2->findMany());
技巧