Мне нужно несколько советов о том, как лучше всего проанализировать вывод pdftk dump_data_fields
используя PHP?
Кроме того, свойства, которые мне нужно извлечь: FieldName
, FieldNameAlt
и опционально FieldMaxLength
а также FieldStateOptions
,
FieldType: Text
FieldName: TestName1
FieldNameAlt: TestName1
FieldFlags: 29360128
FieldJustification: Left
FieldMaxLength: 5
---
FieldType: Button
FieldName: TestName3
FieldFlags: 0
FieldJustification: Left
FieldStateOption: Off
FieldStateOption: Yes
---
...
Будет ли что-то подобное достаточно?
$handle = fopen("/tmp/bla.txt", "r");
if ($handle) {
$output = array();
while (($line = fgets($handle)) !== false) {
if (trim($line) === "---") {
// Block completed; process it
if (sizeof($output) > 0) {
print_r($output);
}
$output = array();
continue;
}
// Process contents of data block
$parts = explode(":", $line);
if (sizeof($parts) === 2) {
$key = trim($parts[0]);
$value = trim($parts[1]);
if (isset($output[$key])) {
$i = 1;
while(isset($output[$key.$i])) $i++;
$output[$key.$i] = $value;
}
else {
$output[$key] = $value;
}
}
else {
// handle malformed input
}
}
// process final block
if (sizeof($output) > 0) {
print_r($output);
}
fclose($handle);
}
else {
// error while opening the file
}
Это дает вам следующий вывод:
Array
(
[FieldType] => Text
[FieldName] => TestName1
[FieldNameAlt] => TestName1
[FieldFlags] => 29360128
[FieldJustification] => Left
[FieldMaxLength] => 5
)
Array
(
[FieldType] => Button
[FieldName] => TestName3
[FieldFlags] => 0
[FieldJustification] => Left
[FieldStateOption] => Off
[FieldStateOption1] => Yes
)
Выявить эти значения так же просто, как:
echo $output["FieldName"];
Я применил некоторые поправки к приведенному выше коду и исправил некоторые проблемы, такие как поле последнего элемента не входит в массив. Теперь обновленный код ниже для массива.
// Get form data fields
$fieldsDataStr = '';
$fieldsDataStr = $pdf->getDataFields();
/* explode by \n and convert string into array. */
$lines = explode("\n", $fieldsDataStr);
/* added '---' into end of lines array beucase we need to get last field value also based on below logic. */
array_push($lines, "---");
$output = array();
$pdfDataArray = array();
$counterField = 0;
foreach($lines as $line) {
if (trim($line) === "---") {
// Block completed; process it
if (sizeof($output) > 0) {
$pdfDataArray[] = $output;
$counterField = $counterField + 1; //fields counter
}
$output = array();
continue;
}
// Process contents of data block
$parts = array();
$parts = explode(":", $line, 2); //2 is return array max limit, it will return array with first occurence of colon
if (sizeof($parts) === 2) {
$key = trim($parts[0]);
$value = trim($parts[1]);
$output[$key] = $value;
}
}
print_r($pdfDataArray);
Вернет правильный массив