各类知识收集,PHP技术分享与解决方案各类知识收集,PHP技术分享与解决方案各类知识收集,PHP技术分享与解决方案

Str Tom,为分享PHP技术和解决方案,贡献一份自己的力量!
收藏本站(不迷路),每天更新好文章!
当前位置:首页 > CMS教程 > PHP

php如何实现word中关键词添加背景色的方法

管理员 2023-09-05
PHP
128

php如何实现word中关键词添加背景色的方法

内容导读

收集整理的这篇技术教程文章主要介绍了php如何实现word中关键词添加背景色的方法,小编现在分享给大家,供广大互联网技能从业者学习和参考。文章包含2440字,纯文字阅读大概需要4分钟

内容图文

本篇文章给大家带来的内容是关于php如何实现word中关键词添加背景色的方法,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

需求:最近做一个word新闻规范扫描的工具,需要将wold中的内容读取出来扫描可疑、错误词文本,并将错误可疑文本添加背景颜色。
内容扫描规范识别不在本文中描述,重点说怎样通过编程语言操作word实现文字添加背景色

为了能快速达到效果,直接在https://github.com/PHPOffice/... 这个项目上扩展的功能:

  • 下载项目目录如下

  • 在路径 phpoffice/phpword/src/PhpWord/ 中新建文件 Template.php

<?phpnamespace PhpOfficePhpWord;class Template extends TemplateProcessor{    public $tempDocumentMainPart;    public function __construct($documentTemplate)    {        parent::__construct($documentTemplate);    }    static $wordArr;    static $color = 'yellow';    /**     * 多个词替换目前替换背景色功能     *     * @param $word     * @param $color     * @example {     *  $template = new PhpOfficePhpWordTemplate($path);     *  $template->setWordBgColor($txt, 'yellow');     * }     */    public function setWordArrBgColor($word, $color)    {        self::$wordArr = array_unique($word);        if (!empty(self::$wordArr)) {            self::$color  = $color;            $this->tempDocumentHeaders = $this->_replace($this->tempDocumentHeaders);            $this->tempDocumentMainPart = $this->_replace($this->tempDocumentMainPart);            $this->tempDocumentFooters = $this->_replace($this->tempDocumentFooters);        }    }    private function _replace($content) {        return preg_replace_callback(            '/<w:r w:([^>]*)>((?:(?!<w:r>)[sS])*)<w:t[^>]*>((?:(?!</w:r>)[sS])*)</w:t></w:r[^>]*>/iUs',            function ($matches) {                // print_r($matches);                if (!empty(trim($matches[3]))) {                    $text = $matches[3];                    foreach (self::$wordArr AS $value) {                        // 判断关键词在字符串中是否存在                        if (false !== strpos($text, $value)) {                            // 背景色属性                            $bgAttr = empty($matches[2])                                ? '<w:rPr><w:highlight w:val="'.self::$color.'"/></w:rPr>'                                : str_ireplace('</w:rPr>', '<w:highlight w:val="'.self::$color.'"/></w:rPr>', $matches[2]);                            $matches[0] = str_ireplace($value,                                '</w:t></w:r><w:r w:'.$matches[1].'>'.$bgAttr.'<w:t>'.$value.'</w:t></w:r><w:r w:'.$matches[1].'>'.$bgAttr.'<w:t>',                                $matches[0]);                        }                    }                    if (!empty($matches[0])) {                        // 过滤掉空的                        $matches[0] = preg_replace('/<w:r w:[^>]*>(?:(?!<w:t>)[sS])*<w:t[^>]*></w:t></w:r[^>]*>/iUs', '', $matches[0]);                    }                }                return $matches[0];            },            $content);    }}
  • 第二部就扩展完成背景色替换功能,接下怎样调用?

//引入类库require autoload.php$path = './test.docx';$template = new PhpOfficePhpWordTemplate($path);$template->setWordArrBgColor(['TMD', '台湾省', 'Caonima'], 'yellow');

以上就是php如何实现word中关键词添加背景色的方法的详细内容,更多请关注Gxl网其它相关文章!

内容总结

以上是为您收集整理的php如何实现word中关键词添加背景色的方法全部内容,希望文章能够帮你解决php如何实现word中关键词添加背景色的方法所遇到的程序开发问题。 如果觉得技术教程内容还不错,欢迎将网站推荐给程序员好友。

内容备注

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

相关推荐

扫码关注

qrcode

QQ交谈

回顶部