function decodeUnicode($str) {
$ret = "";
$x = strlen($str);
for ($i = 0; $i < $x; ++$i) {
if ($i % 2) {
$ret .= substr($str, $i, 1);
}
}
return $ret;
}
iconv() ?!
function decodeUnicode($str) {
$ret = "";
$x = strlen($str);
for ($i = 0; $i < $x; ++$i) {
if ($i % 2) {
$ret .= substr($str, $i, 1);
}
}
return $ret;
}
iconv() ?!