在使用phpword/TemplateProcessor插件替换word模板变量时需要注意模板长度;

插件中大量使用正则匹配会受到pcre.backtrack_limit设置的约束:

image.png

需要在实例化之前设置适当的内存和规定合理的回溯大小:

ini_set('memory_limit', '512M');
ini_set("pcre.backtrack_limit",-1);

标签: php

评论已关闭