Kvazar Crawler Engine that works with Kevacoin node
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.
|
<?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')); |
|
}
|
|
|