Skip to content

Instantly share code, notes, and snippets.

@shinout
Created March 11, 2011 18:25
Show Gist options
  • Save shinout/866322 to your computer and use it in GitHub Desktop.
Save shinout/866322 to your computer and use it in GitHub Desktop.
GoogleサイトのページをSJISに変換するコード。災害まとめページを家族のケータイからも閲覧してもらえるように作った。
<?php
$url = ""; // ここにgoogle siteのURLをかきます。例: $url = "http://sites.google.com/site/suzukisaigai/";
$a="SHIFT_JIS";
$b="text/html; charset=$a";
header("Content-Type:$b");
echo preg_replace("/ead>/","ead><meta http-equiv=Content-Type content='$b'>", mb_convert_encoding(file_get_contents($url), $a, "UTF-8"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment