This commit is contained in:
wangjinlei
2022-09-12 17:42:14 +08:00
parent ea2355c4d8
commit 8490380169
4 changed files with 389 additions and 61 deletions

14
vendor/fpdi/fpdi.php vendored
View File

@@ -559,11 +559,15 @@ class FPDI extends FPDF_TPL
$this->_straightOut('<<');
reset ($value[1]);
while (list($k, $v) = each($value[1])) {
$this->_straightOut($k . ' ');
$this->_writeValue($v);
}
foreach ($value[1] as $k => $v){
$this->_straightOut($k . ' ');
$this->_writeValue($v);
}
// while (list($k, $v) = each($value[1])) {
// $this->_straightOut($k . ' ');
// $this->_writeValue($v);
// }
$this->_straightOut('>>');
break;