I would like to remove the last certain characters of following array api variable 'min_date_created' like
$filter = array('min_date_created' => "$start_date");//query filter
Here the values of
'min_date_created'=Mon, 24 Sep 2012 00:53:26 +0000
So i want to remove the last 15 characters, so i expect the following format
'min_date_created'=Mon, 24 Sep 2012
So please any one help me how can i change this array variable 'min_date_created' in required format.