Advertisement
Guest User

Untitled

a guest
Aug 24th, 2014
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. while($post = $db->fetch_assoc($result)) {
  2.         $posts = [];        //Пустой массив для результатов слияния
  3.         $tmp = [                //Временный массив для хранения аргумента(слагаемого)
  4.             [
  5.                 'id' => $post['id'],       
  6.                 'date' => $post['date'],       
  7.                 'text' => $post['text']
  8.             ],
  9.         ]; 
  10.         $posts = array_merge($posts, $tmp);
  11.     }
  12.  
  13.     echo '<pre>';
  14.     print_r($posts);
  15.     echo '</pre>';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement