@@ 250-252 (lines=3) @@ | ||
247 | if (preg_match('/Size[\s]+([0-9]+)/i', $trailer_data, $matches) > 0) { |
|
248 | $xref['trailer']['size'] = intval($matches[1]); |
|
249 | } |
|
250 | if (preg_match('/Root[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
|
251 | $xref['trailer']['root'] = intval($matches[1]).'_'.intval($matches[2]); |
|
252 | } |
|
253 | if (preg_match('/Encrypt[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
|
254 | $xref['trailer']['encrypt'] = intval($matches[1]).'_'.intval($matches[2]); |
|
255 | } |
|
@@ 253-255 (lines=3) @@ | ||
250 | if (preg_match('/Root[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
|
251 | $xref['trailer']['root'] = intval($matches[1]).'_'.intval($matches[2]); |
|
252 | } |
|
253 | if (preg_match('/Encrypt[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
|
254 | $xref['trailer']['encrypt'] = intval($matches[1]).'_'.intval($matches[2]); |
|
255 | } |
|
256 | if (preg_match('/Info[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
|
257 | $xref['trailer']['info'] = intval($matches[1]).'_'.intval($matches[2]); |
|
258 | } |
|
@@ 256-258 (lines=3) @@ | ||
253 | if (preg_match('/Encrypt[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
|
254 | $xref['trailer']['encrypt'] = intval($matches[1]).'_'.intval($matches[2]); |
|
255 | } |
|
256 | if (preg_match('/Info[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
|
257 | $xref['trailer']['info'] = intval($matches[1]).'_'.intval($matches[2]); |
|
258 | } |
|
259 | if (preg_match('/ID[\s]*[\[][\s]*[<]([^>]*)[>][\s]*[<]([^>]*)[>]/i', $trailer_data, $matches) > 0) { |
|
260 | $xref['trailer']['id'] = array(); |
|
261 | $xref['trailer']['id'][0] = $matches[1]; |