$value =
$this->
getTokenAsEncodedWord($origValue);
$encoded = false;
} } $valueLines =
$this->encoder ?
explode("\r\n",
$value) :
[$value];
// Need to add indices
if (\
count($valueLines) > 1
) { $paramLines =
[];
foreach ($valueLines as $i =>
$line) { $paramLines[] =
$name.'*'.
$i.
$this->
getEndOfParameterValue($line, true, 0 ===
$i);
} return implode(";\r\n ",
$paramLines);
} else { return $name.
$this->
getEndOfParameterValue($valueLines[0
],
$encoded, true
);
} } /**
* Returns the parameter value from the "=" and beyond.
*
* @param string $value to append
*/