本文介绍了将ereg_replace更改为等效的preg_replace的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用preg_replace等效于以下表达式是什么?
What is the equivalent using preg_replace to the following expression?
ereg_replace('^' . $g_lang_prefix, '', $t_var );
推荐答案
preg_replace('/^' . preg_quote($g_lang_prefix,'/') . '/', '', $t_var );
如果需要$g_lang_prefix
作为通用正则表达式,则省略preg_quote
If you need $g_lang_prefix
working as a common regex then omit preg_quote
preg_replace('/^' . $g_lang_prefix . '/', '', $t_var );
(非常明显)
如果您需要第二种解决方案,但您的$g_lang
甚至可以包含此字符/
,那么您至少需要对其进行转义:
Also if you need this second solution, but your $g_lang
can contain even this char /
then you need to escape at least it:
preg_replace('/^' . str_replace('/','\/',$g_lang_prefix) . '/', '', $t_var );
这篇关于将ereg_replace更改为等效的preg_replace的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!