正则表达式 - PHP foreach array return 正则式的问题
<code>$a1 = '/\{[A-Z]*\}/'; $a2 = array( '{DOMEA} = 'AAAAAA'; '{DOMEB} = 'BBBBBBB'; ) $a3 = return(' <h1 id="title">title</h1> {DOMEA} <hr> {DOMEB} '); $b1 = preg_replace($a1,$a2,$a3); </code>
怎么才实现$a2自动匹配$a3里对应的内容呢?
满脑子全是浆糊,实在想不出来,用foreach试了半天了也没弄出来,不知那位路过的PHP大大能给解解……
回复内容:
<code>$a1 = '/\{[A-Z]*\}/'; $a2 = array( '{DOMEA} = 'AAAAAA'; '{DOMEB} = 'BBBBBBB'; ) $a3 = return(' <h1 id="title">title</h1> {DOMEA} <hr> {DOMEB} '); $b1 = preg_replace($a1,$a2,$a3); </code>
怎么才实现$a2自动匹配$a3里对应的内容呢?
满脑子全是浆糊,实在想不出来,用foreach试了半天了也没弄出来,不知那位路过的PHP大大能给解解……
<code><?php //http://3v4l.org/SHdjA $a1 = '/\{[A-Z]*\}/'; $a2 = array( '{DOMEA}'=>'AAAAAA', '{DOMEB}'=>'BBBBBBB' ); $a3 = ' <h1 id="title">title</h1> {DOMEA} <hr> {DOMEB} '; echo preg_replace_callback($a1, function($matches) use($a2) { return $a2[$matches[0]]; }, $a3); ?> </code>
http://3v4l.org/KudfG
因为这根本不是什么正则,只是最普通的str_replace
罢了……
<code>php</code><code>$a2 = array( '{DOMEA}' => 'AAAAAA', '{DOMEB}' => 'BBBBBBB', ); $a3 = ' <h1 id="title">title</h1> {DOMEA} <hr> {DOMEB} '; echo str_replace(array_keys($a2), array_values($a2), $a3); </code>
<code>php</code><code><br>$a2 = array( '{DOMEA}' => 'AAAAAA', '{DOMEB}' => 'BBBBBBB', ); $a3 = ' <h1 id="title">title</h1> {DOMEA} <hr> {DOMEB} '; echo strtr($a3,$a2); </code>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
