php – 使用preg_replace命名反向引用

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – 使用preg_replace命名反向引用脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
简单我似乎没有找到关于 PHPPReg_replace()支持命名反向引用的任何定义:
// should match,replace,and output: user/profile/foo
$string = 'user/foo';
echo preg_replace('#^user/(?P<id>[^/]+)$#Di','user/profile/(?P=id)',$string);

这是一个微不足道的例子,但我想知道是否不支持这种语法(?P = name).语法问题或不存在的功能

它们存在:

http://www.php.net/manual/en/regexp.reference.back-references.php

使用preg_replace_callback

function my_replace($matches) {
    return '/user/profile/' . $matches['id'];
}
$newandimproved = preg_replace_callback('#^user/(?P<id>[^/]+)$#Di','my_replace',$string);

甚至更快

$newandimproved = preg_replace('#^user/([^/]+)$#Di','/user/profile/$1',$string);

脚本宝典总结

以上是脚本宝典为你收集整理的php – 使用preg_replace命名反向引用全部内容,希望文章能够帮你解决php – 使用preg_replace命名反向引用所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。