1

動的ページネーションのツイーター結果の max_id を学習しようとしています。

検索メタデータは次のとおりです。

search_metadata: {
  completed_in: 0.033,
  max_id: 326811859678277600,
  max_id_str: "326811859678277634",
  next_results: "?max_id=326811400389406719&q=%23helloworld&count=10&include_entities=1",
  query: "%23helloworld",
  refresh_url: "?since_id=326811859678277634&q=%23helloworld&include_entities=1",
  count: 10,
  since_id: 0,
  since_id_str: "0"
}

私のスクリプトmax_idが次の結果をphp値に変換するのは非常に便利です。

326811400389406719したがって、数値(および文字列からそのような他の数値を抽出する方法はあり?max_id=326811400389406719&q=%23helloworld&count=10&include_entities=1ますか?

ありがとう!

4

2 に答える 2

3
$str = "?max_id=326811400389406719&q=%23helloworld&count=10&include_entities=1"    
parse_str($str, $output);
$max_id = $output['?max_id'];
//print_r($output);
于 2013-04-27T00:04:47.920 に答える