1
This commit is contained in:
14
vendor/fpdi/fpdi.php
vendored
14
vendor/fpdi/fpdi.php
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user