Example #1
0
 /**
  * Unescapes any escaped Unicode characters in a string and returns the new string.
  *
  * For instance, "\u0041bc" would return "Abc".
  *
  * @param  string $string The string to be unescaped.
  *
  * @return CUStringObject The unescaped string.
  */
 public static function fromEscString($string)
 {
     return CUString::fromEscString($string);
 }