Skip to content

Instantly share code, notes, and snippets.

@mistbow
mistbow / utf82gbk.php
Created November 25, 2013 03:08
convert utf8 to gbk
<?php
// convert file from GBK to UTF8
$file = "filename";
$content = file_get_contents($file);
$cotennt = mb_convert_encoding($content, 'GBK', 'UTF8');
file_put_contents($file . ".gbk", $content);
@mistbow
mistbow / gist:7635662
Created November 25, 2013 03:07
convert utf8 to gbk
We couldn’t find that file to show.
@mistbow
mistbow / gbk2utf8.php
Created November 25, 2013 03:01
convert_file_encoding
<?php
// convert file from GBK to UTF8
$file = "filename";
$content = file_get_contents($file);
$cotennt = mb_convert_encoding($content, 'UTF8', 'GBK');
file_put_contents($file . ".utf8", $content);
@mistbow
mistbow / basic.html
Created November 24, 2013 09:13
HTML:Basic html
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>