Jump to content
  • 0

Смена кодировки в простом php скрипте


2_k
 Share

Question

Использую такой скрипт для вывода статуса с твитера:

<?php




function getTwitterStatus($userid){
$url = "http://twitter.com/statuses/user_timeline/$userid.xml?count=1";

$xml = simplexml_load_file($url) or die("could not connect");

foreach($xml->status as $status){
$text = $status->text;
}
echo $text;
}

//user id
getTwitterStatus("id");

?>

Единственная проблема в том, что кирилицу отображает неправельно, подскажите как это можно поправить?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

ну а скрипт то тут причем?

Кодировку отображаемой страницы можно задать

1) в html

<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">

2) в css

@charset "windows-1251";

3) в htaccess

AddDefaultCharset windows-1251

4) Сам файл страницы изначально имеет кодировку, ее можно сменить рядом программ например нотпад++

5) Если вы тупо собрались менять кодировку получаемой строки в пхп попробуйте mb_convert_encoding

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