writeTextRaw() public method

Accept 8-bit text in the current encoding and add it to the buffer.
public writeTextRaw ( string $text )
$text string Text to print, already the target encoding.
Ejemplo n.º 1
0
 /**
  * Add text to the buffer without attempting to interpret chararacter codes.
  *
  * Text should either be followed by a line-break, or feed() should be called
  * after this to clear the print buffer.
  *
  * @param string $str Text to print
  */
 public function textRaw($str = "")
 {
     self::validateString($str, __FUNCTION__);
     $this->buffer->writeTextRaw((string) $str);
 }