How to debug a query in extbase?
问题 $query = $this->createQuery(); return $query->matching($query->like('linker', "$linkerKey=$linkerValue")) ->setOrderings(array('crdate' => $ordering)) ->execute(); How can i debug such a generated query in extbase? When creating the same query again (but without the execute() ) and trying to display it with var_dump or the internal t3lib_div::debug i just receive a blank page. 回答1: $query = $this->createQuery(); $result = $query->matching($query->like('linker', "$linkerKey=$linkerValue")) -