dongtan7351 2012-09-21 02:11
浏览 18
已采纳

爆炸数组结果和回声。

Have been working on a small project, and have gotten stuck at a part that I am trying to get working. Not sure if I am taking the wrong type of approach for it, and there is a better way, but here we go.

I have data in a text file that is written and read to. example: (values are separated by a \t)

S1684    This is a status    share   20/9/2012           share;

What I am doing is searching the file, and returning anything that matches as a part of the array. I have the search working fine, and can return each line that contains the search query, only problem is exploding the results so that I can properly format what I return. This is the main chunk that deals with it.

if(preg_match_all($pattern, $data, $matches)){
       echo "<h3>Results:</h3>";

       echo implode("<p>
", $matches[0])."</p>";

       foreach ($matches as &$value) {
        $date =0;
         list($statusCode, $status, $share, $date, $like, $comment, $share) = explode("\t", $date);

         echo "<h4>Status:".$status."</h4>";
         echo "<h4>Status Code:".$statusCode."</h4>";
       }

    }

The error I receive are undefined offset errors, so how exactly would I be able to explode (or split the array result in any other way) to echo it properly?

Any help is much appreciated thanks.

  • 写回答

1条回答 默认 最新

  • dongtuo6562 2012-09-21 02:28
    关注

    Shouldn't it be explode("\t", $value); instead of explode("\t", $date);

    You are using $value for holding the current value of the array during iteration. $date is always being assigned 0 in the iteration, and trying to explode it will be causing the error.

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

报告相同问题?

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

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

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

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

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

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

客服 返回
顶部