it's doable:
$title = serialize($array);
and then to decode:
$title = unserialize($mysql_data);
but as mentioned it really lessens the benefits of a database in the first place. i'd definitely suggest looking into a multi-table or multi-column option instead, depending on the amount of languages you want to support and if that number will change in the future.
edit: a good point mentioned by dcousineau (see comments)
Sometimes the serialized output, even after escaping, throws characters into the query that screws things up. You may want to wrap your serialize() in base64_encode() calls and then use base64_decode() before you unserialize.
adjusted code for those situations:
$title = base64_encode(serialize($array) );
$title = unserialize(base64_decode($mysql_data) );
