static function initHTML5($doc = null) {
if (is_null($doc)) { $doc = new ExtendedDocument(); }
- $doc->loadHTML('<!DOCTYPE html><html></html>'); // this seems to be the only way to get the DOCTYPE set properly.
+ $doc->loadHTML('<?xml version="1.0" encoding="utf-8"?><!DOCTYPE html><html></html>'); // this seems to be the only way to get the DOCTYPE set properly.
// Created basic HTML document structure.
$root = $doc->getElementsByTagName('html')->item(0);
public function appendJSElement($jsdata) {
return $this->appendChild($this->createElementJS($jsdata));
}
- public function appendJSFile($jsdata, $defer = false, $async = false) {
- return $this->appendChild($this->createElementJSFile($jsdata, $defer, $async));
+ public function appendJSFile($jsURL, $defer = false, $async = false) {
+ return $this->appendChild($this->createElementJSFile($jsURL, $defer, $async));
}
public function appendHTMLMarkup($htmldata, $parentNode = null) {
public function appendJSElement($jsdata) {
return $this->appendChild($this->ownerDocument->createElementJS($jsdata));
}
- public function appendJSFile($jsdata, $defer = false, $async = false) {
- return $this->appendChild($this->ownerDocument->createElementJSFile($jsdata, $defer, $async));
+ public function appendJSFile($jsURL, $defer = false, $async = false) {
+ return $this->appendChild($this->ownerDocument->createElementJSFile($jsURL, $defer, $async));
}
public function setClass($classname) {
$this->setAttribute('class', $classname);
public function appendJSElement($jsdata) {
return $this->appendChild($this->ownerDocument->createElementJS($jsdata));
}
- public function appendJSFile($jsdata, $defer = false, $async = false) {
- return $this->appendChild($this->ownerDocument->createElementJSFile($jsdata, $defer, $async));
+ public function appendJSFile($jsURL, $defer = false, $async = false) {
+ return $this->appendChild($this->ownerDocument->createElementJSFile($jsURL, $defer, $async));
}
}
?>
// encode x09,x20 at lineends
{
$iLength = strlen($sLine);
- $iLastChar = ord($sLine{$iLength-1});
+ $iLastChar = ord($sLine[$iLength-1]);
// !!!!!!!!
// imap_8_bit does not encode x20 at the very end of a text,
if (!($bEmulate_imap_8bit && ($i==count($aLines)-1)))
if (($iLastChar==0x09)||($iLastChar==0x20)) {
- $sLine{$iLength-1}='=';
+ $sLine[$iLength-1]='=';
$sLine .= ($iLastChar==0x09)?'09':'20';
}
} // imap_8bit encodes x20 before chr(13), too