ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Group.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 class 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