热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

phppreg_replace正则替换图片路径

2019独角兽企业重金招聘Python工程师标准$str

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

$str = '
test1,.
test2,
test3,';
print "\n|"."****原串*****************************************************"."\n";
echo $str."\n";
print "\n"."\n"."**********替换后***********************************************"."\n";
//$parm = '/()/i';
$parm = '///$replacy = array('${1}',"http://baidu.com/uc/upload",'${1}');
$replacy = 'http://baidu.com/uc/uploads/';
$re = preg_replace($parm,$replacy,$str,-1);
print $re;
print "\n";
echo $re[0];
print "\n";


转载于:https://my.oschina.net/osgrace/blog/920262


推荐阅读
author-avatar
我是田小勇2702932553
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有