ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HTMLUtil.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 use ILIAS\HTTP;
26 
27 class HTMLUtil
28 {
29  public function __construct()
30  {
31  }
32 
33  public function escape(string $input): string
34  {
35  return htmlspecialchars(
36  $input,
37  ENT_QUOTES | ENT_SUBSTITUTE,
38  'utf-8'
39  );
40  }
41 
42  public function strip(string $input): string
43  {
44  // see https://www.ilias.de/mantis/view.php?id=19727
45  $str = \ilUtil::stripSlashes($input);
46  if ($str !== $input) {
47  $str = \ilUtil::stripSlashes(str_replace("<", "< ", $input));
48  }
49  return $str;
50  }
51 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")