-
Notifications
You must be signed in to change notification settings - Fork 0
/
convert.php
74 lines (50 loc) · 1.09 KB
/
convert.php
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
$name = 'slide0';
$in = $name . '.c0';
$out = 'con_' . $in;
$file_r = fopen($in, 'rb');
$file_w = fopen($out, 'w+');
$bin_str = '';
if ($file_r === false) {
die("Error opening file: $filename");
}
while (!feof($file_r)) {
$byte = ord(fread($file_r, 1));
$bin_str .= chr($byte + 16);
}
fclose($file_r);
fwrite($file_w, $bin_str);
fclose($file_w);
//-------------
$in = $name . '.c1';
$out = 'con_' . $in;
$file_r = fopen($in, 'rb');
$file_w = fopen($out, 'w+');
$bin_str = '';
if ($file_r === false) {
die("Error opening file: $filename");
}
while (!feof($file_r)) {
$byte = ord(fread($file_r, 1));
$bin_str .= chr($byte + 16);
}
fclose($file_r);
fwrite($file_w, $bin_str);
fclose($file_w);
//-------------
$in = $name . '.c2';
$out = 'con_' . $in;
$file_r = fopen($in, 'rb');
$file_w = fopen($out, 'w+');
$bin_str = '';
if ($file_r === false) {
die("Error opening file: $filename");
}
while (!feof($file_r)) {
$byte = ord(fread($file_r, 1));
$bin_str .= chr($byte + 16);
}
fclose($file_r);
fwrite($file_w, $bin_str);
fclose($file_w);
//-------------