Javascript ve php aracılığıyla sonra bunu çıktı yoluyla çerez rusça metni koymak için çalışıyorum zaman döndürür:
% U043F% u0440% u0432% u043E% u0435% u0440% u043A% u0430
Normal Kiril karakter bu çözmek için nasıl?
Bu benim Document.cookie geçmek için kullanıyorum fonksiyonudur:
function setCookie(c_name,val,c_expiredays,c_path,c_domain,c_secure)
{
var exdate=new Date();
exdate.setDate(exdate.getDate()+c_expiredays);
document.cookie=c_name+ "=" +escape(val)+
/* Additional settings */
((c_path) ? "; path=" + c_path : "") + ((c_domain) ? "; domain=" + c_domain : "") + // used to allow using only on a certain domain ((c_secure) ? "; secure" : "") + // used for HTTPS (SSL)
((c_expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}
setcookie ('isim', $ (this) val (), 1.);
Sunucu tarafında, ben böyle çıktısı ediyorum:
(isset($_COOKIE['img_href_value']) ? $_COOKIE['img_href_value'] : '')