API15:JDocument/setMimeEncoding
From Joomla! Documentation
Description
Sets the document MIME encoding that is sent to the browser.
[<! removed edit link to red link >]
<! 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 edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />