Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Convert Code Page (See related posts)

// Convert from tis to utf

   1  
   2  <?php
   3  $content = @file_get_contents("http://www.manager.co.th/RSS/Sport/Sport.xml");
   4  header("Content-Type: text/xml; charset=utf-8");
   5  echo iconv('windows-874', 'utf-8', $content);
   6  ?>

You need to create an account or log in to post comments to this site.


Click here to browse all 5355 code snippets

Related Posts