preg_replace の置換パラメータで名前付きキャプチャ グループを参照するにはどうすればよいですか?
一般的捕获组可以用 \0 \1 \N 来表名,如果是用 P
<code> <?php $text="<span style='some' > AAAA </span>"; $text.="<img style='some' />"; $text.="<p style='some' >"; $text.="<img style='some' />"; $text.="<p style='some' > some </p>"; $out=preg_replace("/<(?P<TAG>span|p)[^>]+>(.+)<\/(\k<TAG>)>/","[\P= TAG]\\1[\/\k<TAG>]",$text); print_r( $out);</code>
好象直接用k
回复内容:
一般的捕获组可以用 \0 \1 \N 来表名,如果是用 P
<code> <?php $text="<span style='some' > AAAA </span>"; $text.="<img style='some' />"; $text.="<p style='some' >"; $text.="<img style='some' />"; $text.="<p style='some' > some </p>"; $out=preg_replace("/<(?P<TAG>span|p)[^>]+>(.+)<\/(\k<TAG>)>/","[\P= TAG]\\1[\/\k<TAG>]",$text); print_r( $out);</code>
好象直接用k
http://php.net/manual/en/function.preg-replace.php
replacement may contain references of the form \n or (since PHP
4.0.4) $n, with the latter form being the preferred one. Every such reference will be replaced by the text captured by the n'th
parenthesized pattern. n can be from 0 to 99, and \0 or $0 refers to
the text matched by the whole pattern. Opening parentheses are counted
from left to right (starting from 1) to obtain the number of the
capturing subpattern. To use backslash in replacement, it must be
doubled ("\\" PHP string).When working with a replacement pattern where a backreference is
immediately followed by another number (i.e.: placing a literal number
immediately after a matched pattern), you cannot use the familiar \1
notation for your backreference. \11, for example, would confuse
preg_replace() since it does not know whether you want the \1
backreference followed by a literal 1, or the \11 backreference
followed by nothing. In this case the solution is to use ${1}1. This
creates an isolated $1 backreference, leaving the 1 as a literal.When using the deprecated e modifier, this function escapes some
characters (namely ', ", and NULL) in the strings that replace the
This is done to ensure that no syntax errors arise
backreference usage with either single or double quotes (e.g.
'strlen('$1')+strlen("$2")'). Make sure you are aware of PHP's
string syntax to know exactly how the interpreted string will look.

ホットAIツール

Undresser.AI Undress
リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover
写真から衣服を削除するオンライン AI ツール。

Undress AI Tool
脱衣画像を無料で

Clothoff.io
AI衣類リムーバー

AI Hentai Generator
AIヘンタイを無料で生成します。

人気の記事

ホットツール

メモ帳++7.3.1
使いやすく無料のコードエディター

SublimeText3 中国語版
中国語版、とても使いやすい

ゼンドスタジオ 13.0.1
強力な PHP 統合開発環境

ドリームウィーバー CS6
ビジュアル Web 開発ツール

SublimeText3 Mac版
神レベルのコード編集ソフト(SublimeText3)

ホットトピック











PHP 8.4 では、いくつかの新機能、セキュリティの改善、パフォーマンスの改善が行われ、かなりの量の機能の非推奨と削除が行われています。 このガイドでは、Ubuntu、Debian、またはその派生版に PHP 8.4 をインストールする方法、または PHP 8.4 にアップグレードする方法について説明します。

ファイルのアップロードを行うには、フォーム ヘルパーを使用します。ここではファイルアップロードの例を示します。

CakePHP は、PHP 用のオープンソース フレームワークです。これは、アプリケーションの開発、展開、保守をより簡単にすることを目的としています。 CakePHP は、強力かつ理解しやすい MVC のようなアーキテクチャに基づいています。モデル、ビュー、コントローラー

Visual Studio Code (VS Code とも呼ばれる) は、すべての主要なオペレーティング システムで利用できる無料のソース コード エディター (統合開発環境 (IDE)) です。 多くのプログラミング言語の拡張機能の大規模なコレクションを備えた VS Code は、
