我有这样的字符串,我想用匹配的模式分割
$keywords =preg_split( "/(?<=test.jpg)/", $string,'-1');
所以,如果我尝试这样,
$file = 'test.jpg';
$keywords =preg_split( "/(?<=$file)/", $string,'-1');
它正在工作,但我需要传递模式中的变量
{{1}}
这不起作用。请帮助。
提前致谢。
答案 0 :(得分:0)
$file = 'test.jpg';
$keywords =preg_split( '/(?<='.$file.')/', $string,'-1');