How to replace special characters in php

藏色散人
Release: 2023-03-02 12:58:02
Original
3877 people have browsed it

php特殊字符替换的方法:首先创建一个PHP示例文件;然后使用方法“str_replace($search, '', $str);”实现替换功能;最后执行该文件即可完成特殊字符的替换。

How to replace special characters in php

php str_replace替换特殊字符

替换单引号,双印,正斜杠,反斜杠等等,and,select等等

<?php
$str = &#39;a\bc"1\&#39;2d4/e/fgh\\\abc\\//a"bandan\&#39;and&#39;;
echo $str.&#39;<br>&#39;;
$search = array(1, 2, 3, 4, 5, 6,&#39;*&#39;,&#39;$&#39;,&#39;\\&#39;,&#39;/&#39;,"&#39;",&#39;"&#39;,"and");
echo str_replace($search, &#39;&#39;, $str);//abcdefghabcaban
echo &#39;<hr>&#39;;
?>
Copy after login

str_replace() 定义和用法

str_replace() 函数替换字符串中的一些字符(区分大小写)。

该函数必须遵循下列规则:

如果搜索的字符串是一个数组,那么它将返回一个数组。

如果搜索的字符串是一个数组,那么它将对数组中的每个元素进行查找和替换。

如果同时需要对某个数组进行查找和替换,并且需要执行替换的元素少于查找到的元素的数量,那么多余的元素将用空字符串进行替换。

如果是对一个数组进行查找,但只对一个字符串进行替换,那么替代字符串将对所有查找到的值起作用。

注释:该函数是区分大小写的。请使用 str_ireplace() 函数执行不区分大小写的搜索。

注释:该函数是二进制安全的。

语法

str_replace(find,replace,string,count)
Copy after login

更多相关知识,请访问PHP中文网

The above is the detailed content of How to replace special characters in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template