I have three object values to merge like
$videos = $this->Blogmodel>all_video_posts_ByCategory($cat_id);
$texts = $this->Blogmodel->all_text_posts_ByCategory($cat_id);
$audio = $this->Blogmodel->all_audio_posts_ByCategory($cat_id);
$data['array'] = array_merge($videos, $texts, $audio);
But the problem was values are sorted by one by one .. How to sort by date while merging ??