普通网友 2013-07-29 10:10
浏览 136
已采纳

将php foreach循环的结果存储为数组

I am using a foreach loop to generate a set of thumbnail links. I am using Wordpress and for one reason or another the place my PHP is executing is not the place I would like to render the list. So my question is: can I replace the echo statement with something that will store all of the generated html (for each image, not just the last one) and allow me to generate it further down the same page?

Thanks for any help. Here's my php so far:

foreach ($gallery_images as $galleryID) {
    $attachment = get_post( $galleryID );

    $thumb_img = wp_get_attachment_image_src( $galleryID, 'thumbnail' );    //thumbnail src
    $full_img = wp_get_attachment_image_src( $galleryID, 'full' );  //full img src

    echo '<a href="' . $full_img[0] . '" id="description-button-' . $gallery_images_count . '" class="thumbLink" target="_blank"><img src="' . $thumb_img[0] .'"></a>';

    $gallery_images_count++;

}//end forEach
  • 写回答

2条回答 默认 最新

  • doujiao0110 2013-07-29 10:13
    关注

    You can store the results to an array so that you can "echo" the results later:

    $links = array();
    foreach ($gallery_images as $galleryID) {
        $attachment = get_post( $galleryID );
    
        $thumb_img = wp_get_attachment_image_src( $galleryID, 'thumbnail' );    //thumbnail src
        $full_img = wp_get_attachment_image_src( $galleryID, 'full' );          //full img src
    
        $links[] = '<a href="' . $full_img[0] . '" id="description-button-' . $gallery_images_count . '" class="thumbLink" target="_blank"><img src="' . $thumb_img[0] .'"></a>';
    
        $gallery_images_count++;
    
    }
    

    And then later in your code, you can print it out:

    echo implode("
    ", $links);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部