douba9020 2016-08-09 16:10
浏览 55
已采纳

迭代多维数组php

I am a newbie to php, i have the following multidimensional array in joomla.

I have the following array for example using print_r (because it is dynamic):

stdClass Object
(
    [pressrelease_title] => Array
        (
            [0] => جريدة الفجر
            [1] => جريدة الفجر
            [2] => جريدة الوطن
            [3] => جريدة أخبار اليوم
            [4] => جريدة الشروق
            [5] => صدى البلد
        )

    [pressrelease_url] => Array
        (
            [0] => url1
            [1] => url2
            [2] => url3
            [3] => url4
            [4] => url5
            [5] => url6
        )

    [pressrelease_desc] => Array
        (
            [0] => بالصور.. وزير المالية يطلق الإصدار السنوي الثاني لـ "موازنة المواطن"
            [1] => دميان: "موازنة المواطن" تفتح المجال لإشراك المواطنين في صياغة السياسات الاقتصادية
            [2] => وزير المالية يطلق الإصدار السنوي الثاني لـ"موازنة المواطن"
            [3] => بمشاركة ممثلين عن البنك الدولي و6 وزارات وخبراء المجتمع المدني.. الثلاثاء .. وزير المالية يطلق الإصدار السنوي الثاني لموازنة المواطن
            [4] => وزير المالية: إصدار صكوك إسلامية لتلبية احتياجات شريحة جديدة من المدخرين
            [5] => اليوم.. "المالية" تطلق إصدارها الثاني لموازنة المواطن
        )

)

Below is a code to iterate on the press releases array. The problem it only shows 3 results not less not more.

<?php
    //$press_releases= json_decode($params->get('repeated_press'),true);
    $press_release = json_decode($attribs->repeated_press);

    $press_n = count((array)$press_release);

    for ($x = 0; $x < $press_n ; $x++) {
        echo '<div class="press_item" id="press_item'.($x+1).'">';
        echo '<div class="title">'.$press_release->pressrelease_title[$x].'</div>';
        echo '<div class="url"><a target="_blank" href="'.$press_release->pressrelease_url[$x].'">'.$press_release->pressrelease_desc[$x].'</a></div>';
        echo '</div>
        ';
    }
?>
  • 写回答

1条回答 默认 最新

  • dregvw1801 2016-08-09 16:17
    关注

    You want your count to be the number of elements in each array, not the number of arrays.

    Change

    $press_n = count((array)$press_release);
    

    To

    $press_n = count($press_release->pressrelease_title);
    

    The 2nd line will count elements in the first member of $press_release (the first of your 3 array blocks)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?
  • ¥15 关于#vue.js#的问题:修改用户信息功能图片无法回显,数据库中只存了一张图片(相关搜索:字符串)
  • ¥15 texstudio的问题,