Показать сообщение отдельно

  #7  
Старый 02.06.2009, 23:14
Gifts
Reservists Of Antichat - Level 6
Регистрация: 25.04.2008
Сообщений: 827
Провел на форуме:
2769640

Репутация: 1304


По умолчанию

попугай
PHP код:
function utf_urlencode($str)
{
    
$str iconv("utf-8""cp1251"$str);
    
$res "";
    for (
$i 0$i strlen($str); $i++) {
        
$res .= "%u";
        
$a iconv("cp1251""ucs-2"$str[$i]);
        for (
$j 0$j strlen($a); $j++) {
            
$n dechex(ord($a[$j]));
            if (
strlen($n) == 1) {
                
$n "0$n";
            }
            
$res .= $n;
        }
    }
    return 
$res;
}
   
echo 
utf_urlencode('Привет медвед');