Advertisement
Guest User

Untitled

a guest
Feb 28th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.98 KB | None | 0 0
  1. $result = [
  2.   'authors' => [
  3.       "dmitriy2033@gmail.com" => [
  4.            'name' => 'Дмитрий Алексеевич Глуховский',
  5.            'Email' => 'dmitriy2033@gmail.com',
  6.            'DataOfBirthday' => 1950,
  7.       ],
  8.       "alex2033@gmail.com" =>   [
  9.            'name' => 'Алексей Алексеевич Глуховский',
  10.            'Email' => 'alex2033@gmail.com',
  11.            'DataOfBirthday' => 1980,
  12.       ],
  13.       "maksim2033@gmail.com" => [
  14.            'name' => 'Максим Алексеевич Глуховский',
  15.            'Email' => 'maksim2033@gmail.com',
  16.            'DataOfBirthday' => 1990,
  17.       ]
  18.   ],
  19.   'books' =>   [
  20.        [
  21.          'title' => 'Metro 2033',
  22.          'author' => 'dmitriy2033@gmail.com',
  23.        ],
  24.        [
  25.          'title' => 'Alex 2033',
  26.          'author' => 'alex2033@gmail.com',
  27.        ],
  28.        [
  29.          'title' => 'Max 2033',
  30.          'author' => 'maksim2033@gmail.com',
  31.        ]
  32.     ],
  33. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement