腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(9999+)
视频
沙龙
1
回答
函数未正确返回值
, $output); $output =
preg_replace
("/a/", $Keys['a'], $output); $output =
preg_replace
("/b/", $Keys['b'],
浏览 2
提问于2014-12-25
得票数 1
回答已采纳
4
回答
我如何写这段php preg-replace代码行呢?
A",$yazi);$yazi=
preg_replace
("/c/i","C",$yazi);$yazi=
preg_replace
(&qu
浏览 0
提问于2013-06-16
得票数 1
回答已采纳
10
回答
如何在PHP中使用
preg_replace
转义$?
、
、
我使用
preg_replace
来转义特殊字符:$tmpStr=
preg_replace
("/\#/", "\#", $tmpStr); $tmpStr=
preg_replace
("/\^/", "\^", $tmpStr);$tmpStr=
preg
浏览 1
提问于2009-04-20
得票数 9
回答已采纳
1
回答
在wampserver的php中使用函数
preg_replace
()时出错
我有一个函数: $str =
preg_replace
("/(à|á|ạ|ả|ã|â|ầ|ấ|ậ|ẩ|ẫ|ă|ằ|ắ|ặ|ẳ|ẵ$str =
preg_replace
("/(ì|í|ị|ỉ|ĩ)/", 'i', $str); $
浏览 4
提问于2012-02-27
得票数 0
2
回答
preg_replace
,无法插入'\‘
我想定义这样的东西:
preg_replace
('à','\\`{a}',
preg_replace
('ò','\\`{
浏览 1
提问于2014-04-30
得票数 0
1
回答
Preg_replace
&、;和#
、
、
以下是我的代码>$data =
preg_replace
("/>/", ">", $data);>$d
浏览 0
提问于2012-07-22
得票数 1
6
回答
如何从字符串中删除所有数字?
、
我写了这段代码,它是有效的:$words =
preg_replace
('/1/', '', $words ); // remove numbers $words =
preg_replace
('/2/', '&
浏览 4
提问于2013-01-09
得票数 66
回答已采纳
1
回答
如何使post数组成为一行代码而不是多行代码?
、
、
、
$name = trim(
preg_replace
('/ +/', ' ',
preg_replace
('/[^A-Za-z0-9 ]/', ' ', urldecode(html_entity_decode(strip_tags($_POST['name'])))))); $email = trim(
preg_replace
('/ +/', '
浏览 7
提问于2021-03-30
得票数 0
3
回答
如何用特定的字母替换特定的数字(在长度限制内)?
、
、
、
("/\"322\"+/", "edd", $string);$string =
preg_replace
("/\"32\"+/", "ed", $string); $string =
preg_repla
浏览 6
提问于2017-05-19
得票数 0
回答已采纳
1
回答
PHP -
preg_replace
和UTF8
、
、
= '') $value =
preg_replace
('/([\[\(].*[\]\)])/i', '', $value); $value =
preg_replace
('/-$/
浏览 2
提问于2015-07-05
得票数 1
回答已采纳
1
回答
正则表达式正在破坏我的UTF- 8 XML (PHP)
、
、
、
preg_replace
('/\bAU\b/i', 'AU', $string); $string=
preg_replace
('/\bpc\b/i', 'PC', $string); $string=
preg_repl
浏览 8
提问于2017-01-05
得票数 1
回答已采纳
2
回答
如何匹配感叹号(!)用PHP吗?
、
我试着做以下几件事:$line =
preg_replace
(" [!]([A-Z])", " $1", $line); 结果:PHP
浏览 7
提问于2012-03-13
得票数 7
回答已采纳
2
回答
致命错误:无法重新声明函数
、
= 'Song Title') { $guardardato[0] =
preg_replace
] =
preg_replace
( &q
浏览 4
提问于2015-04-21
得票数 1
回答已采纳
1
回答
将多个正则表达式组合为一个
、
、
、
function_exists("mb_trim")) { { $str =
preg_replace
(separator $str =
浏览 0
提问于2011-11-11
得票数 2
回答已采纳
1
回答
Slug函数删除带有url重音的字母
、
str_replace( array_keys($special_cases), array_values( $special_cases), $string ); $string =
preg_replace
("/\s+/", "$separator&
浏览 0
提问于2019-02-20
得票数 0
1
回答
警告:
preg_replace
():编译失败:在偏移量5处没有重复
、
、
/","a",$str); $str=
preg_replace
("/(ì|í|?|?/","u",$str); $str=
preg_replace
("/(?|ý|?|?|?)/"
浏览 1
提问于2013-09-26
得票数 0
回答已采纳
1
回答
可以收缩
preg_replace
和str_replace吗?
= str_replace(".docx", "", $fil_namn);$fil_namn =
preg_replace
",$fil_namn);$fil_namn =
preg_repl
浏览 3
提问于2014-04-28
得票数 0
回答已采纳
1
回答
准备好的语句puts \ before‘
、
$text = trim($text); $text =
preg_replace
("/\[b\](.*)\[\/b\]/", "<strong>\\1</strong>", $text); $text =
preg_replace
("/\[i\](.*)\[\/i\]/"
浏览 1
提问于2010-11-10
得票数 0
回答已采纳
1
回答
为什么preg替换不接受数组
我试图用
preg_replace
添加foreach语句,但它一直抛出错误
preg_replace
(): Parameter mismatch, pattern is a string while replacementphp ', $content); $content =
preg_replace</e
浏览 0
提问于2013-05-11
得票数 1
回答已采纳
1
回答
如何在不删除IE条件注释的情况下缩小php html输出?
, $html, $pre); $html =
preg_replace
('#<!.+–>#', '', $html); $html =
preg_replace
('/[\r\n\t]+/'
浏览 3
提问于2013-01-24
得票数 1
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
源起网源码模板织梦去除文章中图片的高宽度做到自适应展示
php中常用的采集函数的总结,值得收藏!
“任意代码执行漏洞”实例测试
正则表达式详解
后台Getshell的两种常规姿势
热门
标签
更多标签
云服务器
ICP备案
对象存储
腾讯会议
实时音视频
活动推荐
运营活动
广告
关闭
领券