$user_pattern = "/ \@(.+?)([\s|:]|$ )/";
$str = preg_replace($user_pattern, ' ${1} ', $str );
请问怎么将${1}的中文进行urlencode函数转码?我用下面这样不行,都当成字符串了。
$str = preg_replace($user_pattern, ' ${1} ', $str );
用 preg_replace_callback() 吧,
如:
function cb($matches) {
return sprintf(' %1$s ',urlencode($matches[1]));
}
$user_pattern = "/\@(.+?)([\s|:]|$)/";
$str = 'jacky@yyq.cn';
$str = preg_replace_callback($user_pattern,'cb', $str );
echo $str;
用 preg_replace_callback() 吧,
如:
function cb($matches) {
return sprintf(' %1$s ',urlencode($matches[1]));
}
$user_pattern = "/\@(.+?)(……
好象可以,但两个值都转了,我只要改变一个,就是点击链接里面的,链接显示的文字不改,如只改这个http://127.0.0.1/${1}的正则值,另一个不改。
参见preg_replace_callback第5个参数,设为1就只替换一次,而第一次替换便是A标签中的
引用 1 楼 varkychan 的回复:用 preg_replace_callback() 吧,
如:
function cb($matches) {
return sprintf(' %1$s ',urlencode($matches[1]));
}
$user……
很简单,修改sprintf中的参数即可,
如:
function cb($matches) {
return sprintf(' %s ',urlencode($matches[1]),$matches[1]);
}
你的原方案是可行的,只是遗漏了一些东西
$user_pattern = "/ \@(.+?)([\s|:]|$ )/e"; $str = preg_replace($user_pattern, '" <a href=\"http://127.0.0.1/".urlencode("${1}")."\">${1}</a>"',$str );
本帖最后由 xuzuning 于 2013-04-10 09:53:52 编辑
你的原方案是可行的,只是遗漏了一些东西
PHP code?12$user_pattern = "/ \@(.+?)([\s|:]|$ )/e"; $str = preg_replace($user_pattern, '"
从php5.5开始,/e 修饰符开始抛弃,建议使用 preg_replace_callback()
本帖最后由 xuzuning 于 2013-04-10 09:53:52 编辑
你的原方案是可行的,只是遗漏了一些东西
PHP code?12$user_pattern = "/ \@(.+?)([\s|:]|$ )/e"; $str = preg_replace($user_pattern, '"
好象不行,还是当成字符。还没有了链接
我并没有必要糊弄你!
$str = ' @中文aa:';$user_pattern = "/ \@(.+?)([\s|:]|$ )/e"; $str = preg_replace($user_pattern, '" <a href=\"http://127.0.0.1/".urlencode("${1}")."\">${1}</a>"',$str );echo $str;中文aa
引用 2 楼 BILLSSJONE 的回复:引用 1 楼 varkychan 的回复:用 preg_replace_callback() 吧,
如:
function cb($matches) {
return sprintf(' %1$s ',urlencode($m……
好象也不行。
function cb($matches) { return sprintf(' a href="http://127.0.0.1/%1$s">%1$s</a> ',urlencode($matches[1]),$matches[1]);}$str="测试 @我的微博 添加链接";$user_pattern = "/ \@(.+?)([\s|:]|$ )/";$str = preg_replace_callback($user_pattern,'cb', $str ); echo $str;
#9 的代码应写作
function cb($matches) { return sprintf(' a href="http://127.0.0.1/%s">%s</a> ',urlencode($matches[1]),$matches[1]);}$str="测试 @我的微博 添加链接";$user_pattern = "/ \@(.+?)([\s|:]|$ )/";$str = preg_replace_callback($user_pattern,'cb', $str ); echo $str;测试 a href="http://127.0.0.1/%CE%D2%B5%C4%CE%A2%B2%A9">我的微博 添加链接
我并没有必要糊弄你!PHP code?1234$str = ' @中文aa:';$user_pattern = "/ \@(.+?)([\s|:]|$ )/e"; $str = preg_replace($user_pattern, '" ${1}"',$str……
哦,谢谢,这个可以,刚才我测试你的代码是没有改正则,就是没有加那个e,所以测的结果是直接输出:
a href=\"http://127.0.0.1/".urlencode("中文aa")."\">中文aa
#9 的代码应写作PHP code?1234567function cb($matches) { return sprintf(' a href="http://127.0.0.1/%s">%s ',urlencode($matches[1]),$matches[1]);}$str="测试 @我的微博 添加链接";$user_pattern = "/ \@(……
太谢谢了,终于行了,搞得我从昨天测试到今天