I've got an array that looks like this:
["title"] => "Some Title"
["author"] => 3
and I'm trying to flatten it to a string that looks like this:
title|Some Title|author|3
implode() only displays the values - is there a function to create a list string from an array that includes the element titles?