$string = preg_replace("_\[soundcloud\]/http:\/\/soundcloud.com\/(.*)/\[/soundcloud\]_is", "<iframe width=\"100%\" height=\"166\" scrolling=\"no\" frameborder=\"no\" src=\"https://w.soundcloud.com/player/?url=\$0\"></iframe>", $string);
再次您好 Stackoverflow!
我希望我的 UBB 解析器通过解析来支持 soundcloud 链接
[soundcloud](url)[/soundcloud]
进入
<iframe width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url= (url) "></iframe>
通过使用preg_replace
上述方法,但这不起作用。
有人可以帮我我的正则表达式有什么问题吗?
提前致谢!