电子邮件分组数组结果

时间:2016-04-22 20:57:02

标签: php arrays laravel

所以我有一系列看起来像这样的数组:

object(Illuminate\Support\Collection)[214]
  protected 'items' => 
    array (size=1)
      0 => 
        array (size=2)
          'data' => string 'test'
          'user' => string 'testmail@testing.com'
object(Illuminate\Support\Collection)[215]
  protected 'items' => 
    array (size=1)
      0 => 
        array (size=2)
          'data' => string 'Awesome test' 
          'user' => string 'tester@mail.com'
object(Illuminate\Support\Collection)[220]
  protected 'items' => 
    array (size=2)
      0 => 
        array (size=2)
          'data' => string ' A string' 
          'user' => string 'different.tester@mail.com'
      1 => 
        array (size=2)
          'data' => string 'Another string again' 
          'user' => string 'different.tester@mail.com'

我想循环遍历每个数组并将数据值发送给相关用户。

因此,different.tester@mail.com会收到'A string'和'Another string again',例如。

我完全坚持这一点,欢迎任何反馈!

由于

0 个答案:

没有答案