order('`order` desc,`id` desc')->limit(0,10)->select(); foreach($left_type as&nbs"/> order('`order` desc,`id` desc')->limit(0,10)->select(); foreach($left_type as&nbs">

Home >Backend Development >PHP Tutorial >thankphp里面双循环如何写

thankphp里面双循环如何写

WBOY
WBOYOriginal
2016-06-13 11:44:461134browse

thankphp里面双循环怎么写

$left_type = M('type')->where("`pid`='2'")->order('`order` desc,`id` desc')->limit(0,10)->select();	

foreach($left_type as $v){<br />    $left_goods = M('goods')->where("`pid`='$v[id]'")->order('`order` desc,`id` desc')->limit(0,10)->select();<br />}


大概意思就是有两个表,type表和goods表,type表是goods表的父级表,type表中的id字段对应goods表中的pid字段。
现在我想实现的是先把type表中的类别给循环出来,再在每个类别下面把相对应的goods表中的内容给循环出来。
但是之前没用过thankphp,不知道应该怎么写。最上面的那个肯定是错的,我就是写一下我的这个意思。

求大神随手写个demo我看下,谢谢了。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn