unescape() public static method

Un-escapes a hexadecimal string into its original string representation.
public static unescape ( string $value ) : string
$value string
return string
Esempio n. 1
0
 /**
  * Returns the unescaped query.
  *
  * @return string
  */
 public function getUnescapedQuery()
 {
     return Utilities::unescape($this->getQuery());
 }