我不确定我是否以正确的方式解决这个问题。我想取一个简单的链接,像这样;
https://www.youtube.com/watch?v=examplevideo
并将其变成
<a href= 'https://www.youtube.com/embed/examplevideo' target=_blank><img src='http://img.youtube.com/vi/examplevideo/0.jpg' width='536' border='1'></a>
过去,我可以通过使用 str_replace 来更改链接,这非常简单,因为您可以提取一种模式并用另一种模式替换它。但是,在这种情况下,被保留的模式在输出中出现了两次。str_replace 是正确的方法吗?