zf框架中的程序如何进行调试?
try {
$result = $this->fetchAll($where, $order, $count, $offset);
}
catch (Exception $e)
{
echo $e->getMessage();
}
try {
$result = $this->fetchAll($where, $order, $count, $offset);
}
catch (Exception $e)
{
echo $e->getMessage();
}
不错,正是我想要的!
zf应该如何配置呢?