summaryrefslogtreecommitdiff
path: root/ext/recode/tests/002.phpt
blob: fb9f2864229f3b2dd7903e853eca2ad185c64752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
--TEST--
recode_string() function - Testing string conversions between latin1, UTF-8 and html
--SKIPIF--
<?php if (!extension_loaded("recode")) print "skip"; ?>
--FILE--
<?php
function ascii2hex($ascii) {
    $hex = '';
    for ($i = 0; $i < strlen($ascii); $i++) {
        $byte = dechex(ord($ascii{$i}));
        $byte = str_repeat('0', 2 - strlen($byte)).$byte;
        $hex .= $byte . " ";
    }
    return $hex;
}

$html_file = fopen(realpath(dirname(__FILE__)) . '/html.raw', 'r');
$utf_8_filepath = realpath(dirname(__FILE__)) . '/utf8.raw';
$utf_8_file = fopen($utf_8_filepath, 'w+');

recode_file('html..utf8', $html_file, $utf_8_file);

rewind($utf_8_file);
echo '#' . ascii2hex(fread($utf_8_file, filesize($utf_8_filepath))) . "#\n";

fclose($html_file);
fclose($utf_8_file);

unlink($utf_8_filepath);
?>
--EXPECT--
#31 32 33 c3 a5 c3 a4 c3 b6 61 62 63 #