dongtong5242 2014-08-21 20:53
浏览 47
已采纳

PHP:MySQL数据库的数组

I'd like to put some variables of my array into a MySQL Database.

My array is called $data and looks like this :

Array
(
[0] => Array
    (
        [created_at] => Wed Aug 20 19:38:58 +0000 2014
        [location] => Hollywood, CA
    )

[1] => Array
    (
        [created_at] => Wed Aug 20 16:45:48 +0000 2014
        [location] => Ventura County
    )

[2] => Array
    (
        [created_at] => Wed Aug 20 01:39:03 +0000 2014
        [location] => Berkeley, CA
    )

[3] => Array
    (
        [created_at] => Tue Aug 19 23:53:54 +0000 2014
        [location] => Charlotte, NC
    )

)

Then I created the MySQL "maj" with that query :

CREATE TABLE maj (id SERIAL, created_at TEXT, location TEXT)

I know how to create a variable $location and put it into the database (something like
$location= $data['location']). But I see the thing when the array is only composed of one location and not three..

So how could I do to populate my database with the three locations and the three created_at ?

Thank you !


Ok, I've edited my question by adding Aleatoric's snippet:

$get_tweets = $twitter_oauth->get (URL)
$tweets = json_encode($get_tweets);
$my_arr = json_decode($tweets, true);
$data = array();

foreach($my_arr["statuses"] as $status) {
    $data[] = array(
      "created_at" => $status["created_at"],
     "location" => $status["user"]["location"]
    );
}

$rows = [
    [
        'created_at'=>'date1',
        'location'=>'location1'
    ],[
        'created_at'=>'date2',
        'location'=>'location2'
    ]
];

foreach ($rows as $row){
    $date = $row['created_at'];
    $location = $row['location'];
    //run SQL insert
}
  • 写回答

2条回答 默认 最新

  • douweilaton2762 2014-08-21 21:14
    关注

    If you want to do something for each element in an array, you need a foreach loop, e.g.

    $rows = [
        [
            'created_at'=>'date1',
            'location'=>'location1'
        ],[
            'created_at'=>'date2',
            'location'=>'location2'
        ]
    ];
    
    foreach ($rows as $row){
        $date = $row['created_at'];
        $location = $row['location'];
        //run SQL insert
    }
    

    EDIT based on the updated code sample:

    $get_tweets = $twitter_oauth->get (URL)
    $tweets = json_encode($get_tweets);
    $my_arr = json_decode($tweets, true);
    
    //Declare the multidimensional data array which will contain the rows
    $data = array();
    
    //Populate the data array with arrays of values
    foreach($my_arr["statuses"] as $status) {
    $data[] = array(
        "created_at" => $status["created_at"],
       "location" => $status["user"]["location"]
      );
    }
    
    //Iterate over the data array
    foreach ($data as $row){
        $date = $row['created_at'];
        $location = $row['location'];
        //run SQL insert
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料