ホームページ  >  記事  >  バックエンド開発  >  PHPを使用してワードのキーワードに背景色を追加する方法

PHPを使用してワードのキーワードに背景色を追加する方法

不言
不言転載
2018-10-09 13:59:362809ブラウズ

この記事の内容は、PHP で Word のキーワードに背景色を付ける方法に関するもので、一定の参考価値がありますので、困っている友人の参考にしていただければ幸いです。

要件: 最近、ワード ニュースの標準スキャン ツールを作成しました。このツールは、ワードでコンテンツを読み取り、疑わしいテキストや間違ったワード テキストをスキャンし、間違ったテキストや疑わしいテキストに背景色を追加する必要があります。
コンテンツ スキャン仕様の認識についてはこの記事では説明しません。要点 プログラミング言語でワードを操作して文字に背景色を付ける方法について説明します。

効果をすぐに実現するには、https://github.com/PHPOffice/... で機能を直接拡張します。このプロジェクト:

  • プロジェクトをダウンロードします。

PHPを使用してワードのキーワードに背景色を追加する方法

  • パス phpoffice/phpword/ に新しいファイル Template.php を作成します。 src/PhpWord/

<?php namespace PhpOffice\PhpWord;

class Template extends TemplateProcessor
{
    public $tempDocumentMainPart;

    public function __construct($documentTemplate)
    {
        parent::__construct($documentTemplate);
    }

    static $wordArr;
    static $color = &#39;yellow&#39;;

    /**
     * 多个词替换目前替换背景色功能
     *
     * @param $word
     * @param $color
     * @example {
     *  $template = new \PhpOffice\PhpWord\Template($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(
            '/<r>]*)>((?:(?!)[\s\S])*)<t>]*>((?:(?!)[\s\S])*)]*>/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])
                                ? '<rpr><highlight></highlight></rpr>'
                                : str_ireplace('', '<highlight></highlight>', $matches[2]);

                            $matches[0] = str_ireplace($value,
                                '</t></r><r>'.$bgAttr.'<t>'.$value.'</t></r><r>'.$bgAttr.'<t>',
                                $matches[0]);
                        }
                    }


                    if (!empty($matches[0])) {

                        // 过滤掉空的
                        $matches[0] = preg_replace('/<r>]*>(?:(?!)[\s\S])*<t>]*>]*>/iUs', '', $matches[0]);
                    }
                }
                return $matches[0];
            },
            $content);
    }
}</t></r></t></r>
  • 2 番目の部分では、背景色の置換関数を拡張します。次にそれを呼び出す方法を教えてください。

  • うわー

以上がPHPを使用してワードのキーワードに背景色を追加する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はsegmentfault.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。