API16

API16:JDocument/setMimeEncoding

From Joomla! Documentation

Description

Sets the document MIME encoding that is sent to the browser.


<! removed transcluded page call, red link never existed >

Syntax

setMimeEncoding($type= 'text/html')
Parameter Name Default Value Description
$type 'text/html' $type public

Returns

void

Defined in

libraries/joomla/document/document.php

Importing

jimport( 'joomla.document.document' );

Source Body

function setMimeEncoding($type = 'text/html') {
        $this->_mime = strtolower($type);
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples