我在 wordpress 中遇到了一个非常奇怪的问题。
我将帖子内容作为变量获取,然后对变量进行 preg_match 没有结果。然后,当使用作为变量的字符串而不是变量本身时,一切正常。这让我发疯,有人可以帮助我吗?
// This doesn't work, I checked a thousand times and inside the $content variable
// is the same string as I use below
$content = the_content();
preg_match('/<iframe.*src=\\"(.*)\\".*><\\/iframe>/is', $content, $matches);
return $matches;
// This works perfect?
$content = the_content();
preg_match('/<iframe.*src=\\"(.*)\\".*><\\/iframe>/is', "this is a string containing <iframe ...", $matches);
return $matches;