You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
285 B
16 lines
285 B
3 years ago
|
<?php
|
||
|
|
||
|
function decodeString($string) {
|
||
|
|
||
|
if (is_numeric($string) && $string < 0xFFFFFFFF) {
|
||
|
return mb_chr($string, 'ASCII');
|
||
|
} else {
|
||
|
return hex2bin($string);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function filterString($string) {
|
||
|
|
||
|
return strip_tags(html_entity_decode($string, ENT_QUOTES, 'UTF-8'));
|
||
|
}
|