dongzhenyin2001 2014-03-08 09:50
浏览 193
已采纳

在EOD内的php中输出一个数组

I have the following php script:

<?php

$favorites = mysql_query(" SELECT * FROM `likes` WHERE `the_comment_id`='{$row['comments_id']}'  ");    

while($e = mysql_fetch_array($favorites)){
    $like_users = $e['user'];
    $array[]=$like_users;
}

$comments .= <<<EOD
<table><td> PRINT ARRAY HERE {$array[0]} </td></table>  
EOD;
?>

is it possible to print all array contents inside the EOD; I used {$array[0]} but prints me only the first array contente of course. How can I change it to print me all content of array? Any idea? Thanks

  • 写回答

1条回答 默认 最新

  • dongyan7988 2014-03-08 09:52
    关注

    Why not just implode your array and then pass it inside the HEREDOC ?

    $arstring = implode(' ',$array); //<--- Implode your array with space as the delimiter
    $comments .= <<<EOD
    <table><td> $arstring </td></table>  
    EOD;
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

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

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

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

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

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

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

客服 返回
顶部