php – 使用preg_replace命名反向引用

前端之家收集整理的这篇文章主要介绍了php – 使用preg_replace命名反向引用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
很简单我似乎没有找到关于 PHP的preg_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);
原文链接:https://www.f2er.com/php/132989.html

猜你在找的PHP相关文章