2012-11-03 109 views
-1

我在php中以关联数组格式输出以下twitter数据输出,如何将此数据插入到mysql数据库表中。请建议任何方式来做到这一点。插入关联数组数据到mysql

Array (
[created_at] => Fri, 02 Nov 2012 18:15:57 +0000 
[from_user] => VolksblattNews 
[from_user_id] => 828753642 
[from_user_id_str] => 828753642 
[from_user_name] => Volksblatt News 
[geo] => [id] => 2.6443066310356E+17 
[id_str] => 264430663103557632 
[iso_language_code] => de 
[metadata] => Array ([result_type] => recent) 
[profile_image_url] => http://a0.twimg.com/profile_images/2619216207/VB_48x48_reasonably_small_normal.gif 
[profile_image_url_https] => https://si0.twimg.com/profile_images/2619216207/VB_48x48_reasonably_small_normal.gif 
[source] => <a Google</a> => Bundesrat Burkhalter verstärkt Schweizer Beziehungen zu Burma: RANGUN - Didier Burkhalter hat… http://t.co/BF3aX2bY 
[to_user] => 
[to_user_id] => 0 
[to_user_id_str] => 0 [ 
to_user_name] =>) 

我从下面的程序的输出:

<?php 

//a json string 

$jsonstring='{ 


"created_at": "Fri, 02 Nov 2012 18:15:57 +0000", 
    "from_user": "VolksblattNews", 
    "from_user_id": 828753642, 
    "from_user_id_str": "828753642", 
    "from_user_name": "Volksblatt News", 
    "geo": null, 
    "id": 264430663103557632, 
    "id_str": "264430663103557632", 
    "iso_language_code": "de", 
    "metadata": { 
    "result_type": "recent" 
    }, 
    "profile_image_url": "http://a0.twimg.com/profile_images/2619216207/VB_48x48_reasonably_small_normal.gif", 
    "profile_image_url_https": "https://si0.twimg.com/profile_images/2619216207/VB_48x48_reasonably_small_normal.gif", 
    "source": "&lt;a href=&quot;http://www.google.com/&quot;&gt;Google&lt;/a&gt;", 
    "text": "Bundesrat Burkhalter verst\u00e4rkt Schweizer Beziehungen zu Burma: RANGUN - Didier Burkhalter hat\u2026 http://t.co/BF3aX2bY", 
    "to_user": null, 
    "to_user_id": 0, 
    "to_user_id_str": "0", 
    "to_user_name": null 

}'; 

$arrayvariable=json_decode($jsonstring,true); 

print_r ($arrayvariable); 

?> 

问候

+0

请..format您的全阵列,因为我已经做了.... –

+0

有哪一个接受了真棒解决方案。 http://stackoverflow.com/questions/1744168/how-to-write-a-good-php-database-insert-using-an-associative-array – mansoor

+0

你知道关系数据库或SQL语言是如何工作的吗?真的很难从这里的答案中告诉你想要什么。数据是否有一个设置的模式,或者你想知道如何序列化数组? –

回答