JDocument/setMimeEncoding: Difference between revisions
From Joomla! Documentation
m removing red link to edit, no existant pages |
m clean up |
||
| Line 2: | Line 2: | ||
Sets the document MIME encoding that is sent to the browser. | Sets the document MIME encoding that is sent to the browser. | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
| Line 37: | Line 35: | ||
</source> | </source> | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
Revision as of 13:52, 24 March 2017
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
<CodeExamplesForm />