Skip to content

Instantly share code, notes, and snippets.

@balibali
Created March 17, 2010 05:25
Show Gist options
  • Save balibali/334949 to your computer and use it in GitHub Desktop.
Save balibali/334949 to your computer and use it in GitHub Desktop.
<?php
/** Public Domain Software */
$html = file_get_contents('http://www.teriyaki.jp/odai/karaoke/index.php');
$html = mb_convert_encoding($html, 'UTF-8', 'EUC-JP');
$html = str_replace('</head>', '<meta name="viewport" content="width=device-width; initial-scale=1.0;"></head>', $html);
header('Content-Type: text/html; charset=utf-8');
echo $html;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment