ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
trait.ilBibliographicSecureString.php
Go to the documentation of this file.
1 <?php
22 {
23  protected function secure(string $string): string
24  {
25  return htmlspecialchars(
26  strip_tags(
27  (string) preg_replace('#\p{C}+#u', '', $string)
28  ),
29  ENT_QUOTES,
30  'UTF-8',
31  false
32  );
33  }
34 }