ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
URL.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 use ValueError;
27 
35 class URL implements Transformation
36 {
39 
40  public function transform($from)
41  {
42  if (false === preg_match('//u', $from)) {
43  throw new ValueError('Invalid UTF-8 string given.');
44  }
45  return rawurlencode($from);
46  }
47 }
transform($from)
Perform the transformation.
Definition: URL.php:40
A transformation is a function from one datatype to another.
Inspired by: Laminas escaper: https://github.com/laminas/laminas-escaper.
Definition: URL.php:35