Serializing an array is the correct way of transforming it into a
string—the first step towards
making it transportable across the e-mail network. Next, you’ll need
to encode it so that it
can be safely sent across; the easiest way to do so in PHP 4 is to use
the base64_encode
function, which transforms it into a format that only uses 7 bits per
character. Therefore,
Answer D is correct.