Jump to content
Fórum Script Brasil
  • 0

Acentuação - PHP


Mayck May

Question

Bom dia,

Estou com um problema na acentuação, criei uma página chamada noticias, nessa página tem um campo chamado conteudo até aqui tudo ok.

Dai eu criei a pagina view.php que vai mostrar a noticia, só q quando mando mostrar o campo contéudo não aparece os acentos aparece aquele monde de letra nada vé e umas interrogação, coloquei já em UTF-8 a pagina e não resolveu.

alguém sabe como posso arrumar isso ?

<?php
// Mostrar Data na Tela.
$titulo = array();
$data = array();
$link = array();
$quantos = 10;
$exibir = 10;
$limite_title = 100;

foreach(simplexml_load_file("http://rss.noticias.uol.com.br/ultnot/index.xml")->channel->item as $item) 
{
$titulo[] = utf8_decode(substr($item->title, 0, $limite_title)."...");
$link[] = utf8_decode($item->link);
$data[] = utf8_decode($item->pubDate);
$quantos++;
}

for($i = $quantos-($exibir+10); $i < $quantos-10; $i++) 
{
if ($titulo[$i]!="")
{


echo 


'<p class="data_noticias"><br/>'.str_replace(" ", " às ", date('d/m/Y H:m:s', strtotime($data[$i]))).' -
<a href="'.utf8_decode($link[$i]).'" target="_blank" title="Leia mais clicando aqui!" class="classe2">'.utf8_decode($titulo[$i]).'</a>';
}    
}
?>

Desde já agradeço pela ajuda

Mayck

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Troca so aki cara

$titulo[] = utf8_decode(substr($item->title, 0, $limite_title)."...");
$link[] = utf8_decode($item->link);
$data[] = utf8_decode($item->pubDate);
por
$titulo[] = utf8_encode(substr($item->title, 0, $limite_title)."...");
$link[] = $item->link;
$data[] = $item->pubDate;

Comigo aki fico beleza !

Link to comment
Share on other sites

  • 0
Troca so aki cara

$titulo[] = utf8_decode(substr($item->title, 0, $limite_title)."...");
$link[] = utf8_decode($item->link);
$data[] = utf8_decode($item->pubDate);
por
$titulo[] = utf8_encode(substr($item->title, 0, $limite_title)."...");
$link[] = $item->link;
$data[] = $item->pubDate;

Comigo aki fico beleza !

Poxa! no meu aqui continua aparecendo os caracteres (Vale reserva R$ 1,1 bi no balanço para perda provável em ação do governo...)

poderia me mandar o script total que deu certo pra vc

porque eu não sei se estou errando em algum outra parte da página

Desde já te agradeço e muito pela ajuda

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.

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.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...