lithium\net\http\Message::_encode()
Encode the body based on the content type
Parameters
-
mixed
$body
Returns
stringSource
protected function _encode($body) {
$media = $this->_classes['media'];
if ($media::type($this->_type)) {
$encoded = $media::encode($this->_type, $body);
$body = $encoded !== null ? $encoded : $body;
}
return $body;
}