配列

WBOY
リリース: 2016-06-13 13:43:46
オリジナル
994 人が閲覧しました

配列のヘルプ?
無制限のカテゴリを持つ分類テーブルがあります
コンテンツテーブルがあります

データ要件は次のとおりです

パラメータ分類 ID を渡します
6 つの小さなカテゴリをクエリしますID と各サブカテゴリに属する​​ 3 つのコンテンツ

ページ サイクル要件は

HTML コード
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<div class="ch_type">
<table>
<tr>
 <td>小分类的名字</td>
</tr>
<tr>
 <td><p>内容1</p>
     <p>内容2</p>
     <p>内容3</p>
</td>
</tr>
</table>
</div>

ログイン後にコピー


私の貧弱な PHP基本的なことで気を失いました

PHP コード
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
$sqltype="select type_name,type_description,type_path,type_id from `type` where type_parent= $type_id limit 6";
$ret=mysql_query($sqltype);
$type_idarray=array();
$type_array=array();
while($rows_type=mysql_fetch_array($ret,MYSQL_ASSOC)){
    $arrty=array();
    $type_idarray[]=$rows_type['type_id'];小分类ID集合
    array_push($arrty,count($arrty)+1,$rows_type['type_name']);//小分类名字
    array_push($arrty,count($arrty)+1,$rows_type['type_description']);//小分类简介
    array_push($arrty,count($arrty)+1,$rows_type['type_path']);//小分类路径
    $type_array=array_pad($type_array,count($type_array)+1,$arrty);
    
 }
$content_array=array();
foreach($type_idarray as $value) {
  $type_id=$value['type_id'];
  $sql_content="select content_name,content_url from `content` where type_id=$type_id limit 3";//循环三条ID下的内容
  $rec=mysql_query($sql_content);
  while($rows_cent=mysql_fetch_array($ret,MYSQL_ASSOC)){
    $arrz=array();
    array_push($arrz,count($arrz)+1,$rowzhuti_tour['content_name']);内容名字
    array_push($arrz,count($arrz)+1,$rowzhuti_tour['content_url']);内容路径
    $content_array=array_pad($content_array,count($content_array)+1,$arrz);
  }

}
$tempc_html='type.tpl';模板
$obj_html=FILE_PATH.'/type.html';//生成静态网页路径
$smarty->assign('type_array',$type_array);//小分类的数组
$smarty->assign('content_array',$content_array);//内容的数组
$contentc = $smarty->fetch($tempc_html, null, null, false);
$fulnum=file_put_contents($obj_html,$contentc);

ログイン後にコピー


静的にするには、smarty を使用する必要があります
上記の配列は分離しているようですが、分離していないようです長い間やってましたが、どうすればループにできますか? ダニエル
Mahuateng 1264953078
初心者の方は、何も理解できていなくてもご容赦ください





------解決策---------
foreach($type_idarray as $value) {
$type_id=$value['type_id'];
$sql_content="select content_name,content_url from `content` where type_id=$value limit 3";//ループ3つのIDのコンテンツ
------解決策------------------
foreach(from=$name_list item=item)
{
{$item.xxxx}
}
------解決策------------------
{% foreach name=conname key=type_cont item=cont_name from=[% $type_array[childcategory] ​​%] %}

である必要があります{% foreach name=conname key=type_cont item=cont_name from=$type_array [子カテゴリ] %}
関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート