CodeExplorer utf8ToHtmlentity example
return '<b>'.
$string.'</b>';
} public function colorTitle(string
$string): string
{ return '<u>'.
$string.'</u>';
} public function renderTitle(Value
$o): string
{ if (self::
$disable_utf8) { return $this->
utf8ToHtmlentity(parent::
renderTitle($o));
} return parent::
renderTitle($o);
} public function preRender(): string
{ $output = '';
if ($this->
shouldPreRender()) { foreach (self::
$pre_render_sources as $type =>
$values) {