#1 eoneliu
请教下老大实际编程过程中。经常会遇到 显示一条数据。需要通过几个表的数据才能显示。但是这几个表的关联性不是很强。
比如
在controler 中
function index() {
$a = spClass('a');
$rowa = $a -> findall();
$b = spClass('b');
$rowb = $b -> findall();
}
与 spLinker 的执行效率有啥差别吗?或是这样做有什么不足?
2010-05-28 17:18:59
function index() {
$a = spClass('a');
$rowa = $a -> findall();
$b = spClass('b');
$rowb = $b -> findall();
}
2010-05-28 17:18:59
2010-05-28 17:51:39