Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 TDPDF 您可能会遇到错误,错误提示
each() 函数已弃用,fpdi.php 第 562 行出错
这是我系统上的工作解决方案:
//while (list($k, $v) = each($value[1])) { //orignal line 562 foreach ($value[1] as $k => $v ) { //new line 562 $this->_straightOut($k . ' '); $this->_writeValue($v); }