public function loadByField($field,$value)
{
$table = $this->getMainTable();
$where = $this->_getReadAdapter()->quoteInto("$field = ?", $value);
$select = $this->_getReadAdapter()->select()->from($table,array('id'))->where($where);
$id = $this->_getReadAdapter()->fetchOne($select);
// print_r($id);
return $id;
}
每当我print_r
直接在模型和调用函数块中时,此代码运行良好。但是它没有作为回报并且在块中得到这个值而不是在PHTML中得到块。