duanlie7447 2014-02-19 21:53
浏览 17
已采纳

迭代php中的对象无法正常工作

I have been struggling to get the iteration working of a objects array in php. I have a array structure like this:

Array
(

[0] => stdClass Object

(
        [tid] => 7
        [vid] => 2
        [name] => Bakkerijen
        [description] => 
        [format] => full_html
        [weight] => 0
        [depth] => 0
        [parents] => Array
            (
                [0] => 0
            )

    )

[1] => stdClass Object
    (
        [tid] => 10
        [vid] => 2
        [name] => Horeca
        [description] => 
        [format] => full_html
        [weight] => 1
        [depth] => 0
        [parents] => Array
            (
                [0] => 0
            )

    )

[2] => stdClass Object
    (
        [tid] => 8
        [vid] => 2
        [name] => Food Shops
        [description] => 
        [format] => full_html
        [weight] => 2
        [depth] => 0
        [parents] => Array
            (
                [0] => 0
            )

    )   

)

I want to add a selected class to li if a value matches to tid within this array.

Here is the code and HTML I did for that:

 <?php $current_tid = 7; ?>
 <?php foreach ($terms as $term): ?>
              <?php unset($term->parents); ?> 
                <?php if($term->tid == $current_tid) { ?>
                <li><a href="/portfolio#filter=.tid-<?php print $term->tid; ?>" class="selected"><?php print $term->name;?></li>
                <?php }else if($term->tid != $current_tid){ ?>
                <li><a href="/portfolio#filter=.tid-<?php print $term->tid; ?>"><?php print $term->name; ?></a></li>

                <?php } ?>
              <?php endforeach; ?> 

This is the final output I am getting:

<ul class="cathome-list-inner">                            
<li>
    <a class="selected" href="/portfolio#filter=.tid-7">Bakkerijen</a>
</li>
<a class="selected" href="/portfolio#filter=.tid-7"></a>
<li>
    <a class="selected" href="/portfolio#filter=.tid-7"></a>
    <a href="/portfolio#filter=.tid-10">Horeca</a>
</li>                                          
<li>
    <a href="/portfolio#filter=.tid-8">Food Shops</a></li>
<li>
    <a href="/portfolio#filter=.tid-9">Non-food Shops</a></li>
<li>
    <a href="/portfolio#filter=.tid-11">Privé interieurprojecten</a>
</li>                                                   

The issue is why I am getting extra anchor tag added with the selected class..

  • 写回答

1条回答 默认 最新

  • dongren4147 2014-02-19 21:59
    关注

    On this line:

    <li><a href="/portfolio#filter=.tid-<?php print $term->tid; ?>" class="selected"><?php print $term->name;?></li>
    

    You are missing your closing </a> the browser is probably trying to automatically correct your mistake.

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

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?