Table of Contents
回复内容:
Home Backend Development PHP Tutorial javascript - PHP正则替换问题

javascript - PHP正则替换问题

Jun 06, 2016 pm 08:26 PM
javascript php

js下正则是这样的:

<code>var str = "data\/ui_inner\/74\/";
str.replace(/\\/,"");
</code>
Copy after login
Copy after login

php如下这样写却不对:

<code>$auto_url = preg_replace('/\\/','', $str);
</code>
Copy after login
Copy after login

我的目的是替换字符串中的\为空,请问如何替换呢?

按照楼下的答案试了试还是不行呢。。
javascript - PHP正则替换问题

找到原因了,是因为json_encode()导致的,请问如何解决呢?我去google一下

回复内容:

js下正则是这样的:

<code>var str = "data\/ui_inner\/74\/";
str.replace(/\\/,"");
</code>
Copy after login
Copy after login

php如下这样写却不对:

<code>$auto_url = preg_replace('/\\/','', $str);
</code>
Copy after login
Copy after login

我的目的是替换字符串中的\为空,请问如何替换呢?

按照楼下的答案试了试还是不行呢。。
javascript - PHP正则替换问题

找到原因了,是因为json_encode()导致的,请问如何解决呢?我去google一下

javascript - PHP正则替换问题


除非楼主有洁癖, 否则不建议再去对 json_encode 的结果进行替换, 因为 json_encode/ 进行转义输出, 对于js来说, 它的内容 还是 /, 而不是 \/.

javascript - PHP正则替换问题

(PS:下面在测试的时候有注释代码里的var_dump, 只保留echo)
替换的:
javascript - PHP正则替换问题

不替换的:
javascript - PHP正则替换问题

1.html 的代码如下:

<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript">
$.ajax({
    type: "get",
    url: "f.php",
    dataType: "json",
    success: function(data) {
        console.log(data.url);
    }
});
</script>
Copy after login

PHP中提供了一个函数 preg_quote

<code>string preg_quote ( string $str [, string $delimiter = NULL ] )
</code>
Copy after login

preg_quote()需要参数 str 并向其中 每个正则表达式语法中的字符前增加一个反斜线。 这通常用于你有一些运行时字符串 需要作为正则表达式进行匹配的时候。

正则表达式特殊字符有: . \ + * ? [ ^ ] $ ( ) { } = ! < > | : -

<code><?php
$keywords = '$40 for a g3/400';
$keywords = preg_quote($keywords, '/');
echo $keywords; // 返回 \$40 for a g3\/400
</code>
Copy after login

所以以上代码可以这样写

<code><?php
$str = "data\/ui_inner\/74\/";
$pattern = preg_quote('\\');
$auto_url = preg_replace('/'.$pattern.'/','', $str);
echo $auto_url;</code>
Copy after login

应该这么写

<code>$auto_url = preg_replace('/\\\\/','', $str);</code>
Copy after login

也是刚学到,因为在字符串中,'\'也是转义,'/\\/'就变成了'/\/',所以要四个。
也可以用str_replace

<code>$auto_url = str_replace('\\','', $str);</code>
Copy after login

PHP的单引号中仍然会转义\
所以你需要这么做

$auto_url = preg_replace('/\\\\/', '', "data\/ui_inner\/74\/");
Copy after login

改成四个\\\\

直接对json做正则替换是不安全的,因为如果业务逻辑有改变,你可能意外修改了其他的域,建议先decode之后修改好之后再重新encode

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

See all articles