File relocate.php of Package php-pear
1
2
3
#
4
# relocate.php /path/to/file prefix
5
#
6
# Takes a file as input and a string prefix; reads
7
# the file as a serialized data blob and strips PREFIX
8
# from the beginning of each string value within the blob.
9
# Serializes again and writes output to stdout.
10
#
11
12
$file = $_SERVER['argv'][1];
13
$destdir = $_SERVER['argv'][2];
14
15
$destdir_len = strlen($destdir);
16
17
function relocate_string($value) {
18
global $destdir, $destdir_len;
19
20
if (strncmp($value, $destdir, $destdir_len) == 0) {
21
$value = substr($value, $destdir_len);
22
}
23
return $value;
24
}
25
26
function relocate_value($value) {
27
if (is_string($value)) {
28
$value = relocate_string($value);
29
} else if (is_array($value)) {
30
$value = relocate_array($value);
31
}
32
33
return $value;
34
}
35
36
function relocate_array($array) {
37
$result = array();
38
39
foreach ($array as $key => $value) {
40
if (is_string($key)) {
41
$key = relocate_string($key);
42
}
43
$result[$key] = relocate_value($value);
44
}
45
46
return $result;
47
}
48
49
$input = file_get_contents($file);
50
51
# Special case for /etc/pear.conf.
52
if (strncmp($input, "#PEAR_Config 0.9\n", 17) == 0) {
53
echo substr($input, 0, 17);
54
$s = substr($input, 17);
55
} else {
56
$s = $input;
57
}
58
59
echo serialize(relocate_value(unserialize($s)));
60
61