Тема: test
<?php
set_time_limit(0);
ini_set('display_error', 1);
$input_file = 'mrc.sql';
$output_file = 'out.txt';
$handle = fopen($output_file, 'w');
fwrite($handle,
mb_convert_encoding(
file_get_contents($input_file),
'WINDOWS-1252',
'UTF-8'
)
);
fclose($handle);
echo 'complete.';