Jump to content
  • 0

URl и кодировка


zwie
 Share

Question

Снова я =)

Начал делать облако тэгов, возникла проблема с кодировкой. Скрипту передается переменная методом GET (tag.php?tag=тэг), это значение подставляется в базу. Когда перехожу по ссылке такого вида, то все норм. Когда сам руками вбиваю тэг на русском, то получается что-то типа ������. Как бороться? Думаю проверять http referer, и если его нет, то конвертировать строку. Или есть какие-то более универсальные методы?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

когда Вы пишете руками тег кирилицей, то браузер отправляет кирилицу в кодировке своей ОС. потому что еще не получил заголовок с кодировкой, в которой работает сайт.

приведу вам пример алгоритма когда вы работаете в однобайтовой кодировке скрипта, получая запрос в мультибайтовой. Модифицировать алгоритм для частных случаев я думаю Вам не составит труда.

/**
* скрипт сохранен в windows-1251
*/
$RU = urldecode( $_SERVER["REQUEST_URI"] );
$myScriptCharset = "windows-1251";
if ( !preg_match("/[а-я]/i", $RU ) )
{
/**
* mb_detect_encoding ()
* только для мультибайтовых кодировок
* подробнее http://www.php.su/functions/?cat=mbstring
*/
$thisCharset = mb_detect_encoding( $RU );
$RU = iconv( $thisCharset, $myScriptCharset, $RU );
header( "Content-type: text/plain; charset=$myScriptCharset" );
header( "Location: $RU" );
exit();
}

header( "Content-type: text/html; charset=$myScriptCharset" );
echo urldecode( $_SERVER['QUERY_STRING']);
echo "<pre>";
var_dump( $_SERVER['QUERY_STRING'] );
echo "</pre>";
phpinfo(32);

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy