この記事の内容は、PHP で Word のキーワードに背景色を付ける方法に関するもので、一定の参考価値がありますので、困っている友人の参考にしていただければ幸いです。
要件: 最近、ワード ニュースの標準スキャン ツールを作成しました。このツールは、ワードでコンテンツを読み取り、疑わしいテキストや間違ったワード テキストをスキャンし、間違ったテキストや疑わしいテキストに背景色を追加する必要があります。
コンテンツ スキャン仕様の認識についてはこの記事では説明しません。要点 プログラミング言語でワードを操作して文字に背景色を付ける方法について説明します。
<?php namespace PhpOffice\PhpWord; 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 \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>
以上がPHPを使用してワードのキーワードに背景色を追加する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。