File strip.php of Package php-pear
1
2
3
#
4
# strip.php /path/to/file key_name
5
#
6
# Takes a file as input and a string prefix; reads
7
# the file as a serialized data blob and removes a
8
# key with name key_name from the hash.
9
# Serializes again and writes output to stdout.
10
#
11
12
$file = $_SERVER['argv'][1];
13
$key = $_SERVER['argv'][2];
14
15
function remove_key($array, $name) {
16
if (array_key_exists($name, $array)) {
17
unset($array[$name]);
18
}
19
20
return $array;
21
}
22
23
$input = file_get_contents($file);
24
25
# Special case for /etc/pear.conf.
26
if (strncmp($input, "#PEAR_Config 0.9\n", 17) == 0) {
27
echo substr($input, 0, 17);
28
$s = substr($input, 17);
29
} else {
30
$s = $input;
31
}
32
33
echo serialize(remove_key(unserialize($s), $key));
34
35