$taxonomies = array('estate_district', 'estate_type', 'estate_building_type', 'estate_operation', 'estate_class');
foreach ($taxonomies as $tax) {
$taxes_list = wp_get_post_terms($estate_id, $tax, array("fields" => "ids"));
foreach($taxes_list as $tax_id => $id){ print $tax.' = '.$id; }
}
$taxonomies = array('estate_district', 'estate_type', 'estate_building_type', 'estate_operation', 'estate_class', 'estate_proprietor');
foreach ($taxonomies as $taxonomy) {
$est_cat = wp_get_post_terms($estate_id, $taxonomy, array("fields" => "ids"));
foreach ($est_cat as $cat => $cat_id) { $estate_object_data[$taxonomy] = $cat_id }
}