我从 Twitter API 中检索了一系列对象,我想对它们进行总结。我最熟悉分析 SQL 查询的结果,但给出了一系列这样的对象:
array(9) {
["results"]=> array(1) {
[0]=> array(9) {
["text"]=> string(14) "4.2 #runlogger"
["to_user_id"]=> NULL
["from_user"]=> string(13) "alexmcpherson"
["id"]=> int(1459499489)
["from_user_id"]=> int(4647988)
["iso_language_code"]=> string(2) "it"
["source"]=> string(59) "<a href="http://twitter.com/">web</a>"
["profile_image_url"]=> string(59) "http://static.twitter.com/images/default_profile_normal.png"
["created_at"]=> string(31) "Sun, 05 Apr 2009 23:10:45 +0000"
} }
["since_id"]=> int(0)
["max_id"]=> int(1461841556)
["refresh_url"]=> string(35) "?since_id=1461841556&q=%23runlogger"
["results_per_page"]=> int(15)
["total"]=> int(1)
["completed_in"]=> float(0.073063)
["page"]=> int(1)
["query"]=> string(12) "%23runlogger"
}
是否有可能以某种方式说“对于'from_user = $ whoever'的每个对象,统计'text'字段,减去#runlogger”?一旦有了我认为的大规模想法,我就可以弄清楚代码,但不确定如何以一般方式开始。我会将“文本”字段的每个实例设置为一个变量,然后将这些变量添加到一个数组或其他东西中吗?
我是一个快速学习的人,但希望在这个问题上得到一些指导。
谢谢!