Returns data about an individual field, given a field ID.
$field_id: The id of the field to retrieve. $field_id can refer to a deleted field, but not an inactive one.
The field array, as returned by field_read_fields(), with an additional element 'bundles', whose value is an array of all the bundles this field belongs to.
function field_info_field_by_id($field_id) {
$cache = _field_info_field_cache();
return $cache
->getFieldById($field_id);
}