|
@@ 176-178 (lines=3) @@
|
| 173 |
|
if (preg_match('/Size[\s]+([0-9]+)/i', $trailer_data, $matches) > 0) { |
| 174 |
|
$xref['trailer']['size'] = intval($matches[1]); |
| 175 |
|
} |
| 176 |
|
if (preg_match('/Root[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
| 177 |
|
$xref['trailer']['root'] = intval($matches[1]).'_'.intval($matches[2]); |
| 178 |
|
} |
| 179 |
|
if (preg_match('/Encrypt[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
| 180 |
|
$xref['trailer']['encrypt'] = intval($matches[1]).'_'.intval($matches[2]); |
| 181 |
|
} |
|
@@ 179-181 (lines=3) @@
|
| 176 |
|
if (preg_match('/Root[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
| 177 |
|
$xref['trailer']['root'] = intval($matches[1]).'_'.intval($matches[2]); |
| 178 |
|
} |
| 179 |
|
if (preg_match('/Encrypt[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
| 180 |
|
$xref['trailer']['encrypt'] = intval($matches[1]).'_'.intval($matches[2]); |
| 181 |
|
} |
| 182 |
|
if (preg_match('/Info[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
| 183 |
|
$xref['trailer']['info'] = intval($matches[1]).'_'.intval($matches[2]); |
| 184 |
|
} |
|
@@ 182-184 (lines=3) @@
|
| 179 |
|
if (preg_match('/Encrypt[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
| 180 |
|
$xref['trailer']['encrypt'] = intval($matches[1]).'_'.intval($matches[2]); |
| 181 |
|
} |
| 182 |
|
if (preg_match('/Info[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
| 183 |
|
$xref['trailer']['info'] = intval($matches[1]).'_'.intval($matches[2]); |
| 184 |
|
} |
| 185 |
|
if (preg_match('/ID[\s]*[\[][\s]*[<]([^>]*)[>][\s]*[<]([^>]*)[>]/i', $trailer_data, $matches) > 0) { |
| 186 |
|
$xref['trailer']['id'] = array(); |
| 187 |
|
$xref['trailer']['id'][0] = $matches[1]; |