最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php mixed preg_replace_callback 实例应用代码
时间:2022-06-24 20:20:01 编辑:袖梨 来源:一聚教程网
//需求:在所有连接后面添加一个request=xxx; 这个函数比preg_replace灵活性更强,要注意它所替换的内容为整个正则表达式的内容。
$content = '链接1链接2';
function add_source($matches)
{
if(strpos($matches[1], '?'))
{
return 'href="'.$matches[1].'&request=xxx"'; //注意,这里和下面都加上了正则里括号外的东西:href="
}
else
{
return 'href="'.$matches[1].'?request=xxx"';
}
}
$content = preg_replace_callback('/href=['|"](.*?)['|"]/', 'add_source', $content);
//实例二
// 此文本是用于 2002 年的,
// 现在想使其能用于 2003 年
$text = "april fools day is 04/01/2002 ";
$text.= "last christmas was 12/24/2001 ";
// 回调函数
function next_year($matches) {
// 通常:$matches[0] 是完整的匹配项
// $matches[1] 是第一个括号中的子模式的匹配项
// 以此类推
return $matches[1].($matches[2]+1);
}
echo preg_replace_callback(
"|(d{2}/d{2}/)(d{4})|",
"next_year",
$text);
// 结果为:
// april fools day is 04/01/2003
// last christmas was 12/24/2002
相关文章
- 一篇文章搞懂Python的文件路径操作 09-24
- 使用pycharm进行绘图,图片无法显示的解决 09-24
- jupyter notebook加载和运行.py文件方式 09-24
- 如何解决jupyternotebook无法导入自己安装的包 09-24
- JupyterNotebook如何导入python文件时的问题 09-24
- pandas删除重复数据简单方法 09-24