does anyone know an elagant way of turning this string (the list is not definite.. the "keys" and "values" can be added arbitrarily)
business_type,cafe|business_type_plural,cafes|sample_tag,couch|business_name,couch cafe
into this array?
array(
[business_type]=>'cafe'
[business_type_plural] => 'cafes'
[sample_tag]=>'couch'
[business_name]=>'couch cafe'
)