1
私はMailChimp APIを使用しています。結果に私は得ることを、この配列をフィルタリングする方法どのように結果をフィルタリングしますか?
{
"campaigns": [
{
"id": "",
"web_id": ,
"type": "",
"create_time": "",
"archive_url": "",
"long_archive_url": "",
"status": "",
"emails_sent": 0,
"send_time": "",
"content_type": "",
"needs_block_refresh": ,
]
},
:私は情報の大きい大規模な取得結果
public function get($method, $args = array(), $timeout = self::TIMEOUT)
{
return $this->makeRequest('get', $method, $args, $timeout);
}
:
public function index()
{
return $this->MailChimp->get("campaigns");
}
Getメソッド: 私はインデックスメソッドを使用します私が必要とするフィールド(例えば、id
とweb_id
)?