ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Group.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23class Group
24{
28 public function latin1ToUtf8(): Encoding
29 {
30 return new Encoding(
33 );
34 }
35
39 public function asciiToUtf8(): Encoding
40 {
41 return new Encoding(
44 );
45 }
46}
latin1ToUtf8()
Creates a transformation to convert a Latin1 string to UTF-8 encoded string.
Definition: Group.php:28
asciiToUtf8()
Creates a transformation to convert a ASCII string to UTF-8 encoded string.
Definition: Group.php:39