1

PHP で UTF-8 HTML ファイルが必要です。

$html = file_get_contents ( 'http://google.com/' );
file_put_contents ( 'utf8.html', $html );
// Is not UTF-8. It is ISO-8859-1. I would like UTF-8.

ありがとうございました!

4

1 に答える 1

1

以下のように使用できます

$html = file_get_contents ('http://google.com/' ); 
file_put_contents('utf8.html', utf8_encode($html));
于 2012-10-06T15:33:22.740 に答える