我想在文本中搜索一些标记,并根据我的需要返回变量
但是,我收到的错误是Undefined variable: $s
所以我试图制作全球$ s
但没有,
我的代码在那里
function xs($letter, $xs, $s) {
$letter = preg_replace_callback(
'/'.$xs.'/',
function ($match) {
static $i;
$i++;
return $s;
},
$letter
);
return $letter;
}
谢谢你:)