使用 PHP 查找方括号内的内容并替换(正则表达式?)
我需要将其转换
[video=http://example.com/video.flv]
为:
<a href="http://example.com/myVideo.flv" id="player"></a>
使用 PHP - 可能是正则表达式。一个字符串可以包含许多这样的“代码块”,我需要为每个视频提供一个唯一的 ID。我该怎么做?抱歉,我对正则表达式真的不太了解。
I need to convert this:
[video=http://example.com/video.flv]
Into this:
<a href="http://example.com/myVideo.flv" id="player"></a>
Using PHP - probably regex. A string can contain many of these 'code blocks' and I need to give each video a unique ID. How can I do this? I am sorry, I really don't know much about regex.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它们的格式都是标准的,为什么不直接使用 str_replace() 呢?
Well if they are all standard in their format, why not just use str_replace()?
未经测试,可能会炸毁并偷走你的狗,等等......
not tested, will probably blow up and steal your dog, etc...