我编写了这个脚本,以便能够在我的代码中使用类似 bb-code 的标签。在花了很多时间决定最佳方法并询问如何动态替换 bb 标签?,我决定使用 preg_replace_callback。
但是,同一行上有多个项目存在问题
Man [forvo=man,nl]
Mannen [forvo=mannen,nl]
上面的部分有效,但下面的部分无效。
Kip [forvo=kip,nl] - Kippen [forvo=kippen,nl]
Bal [forvo=bal,nl] - Ballen [forvo=ballen,nl]
Vrouw [forvo=vrouw,nl] - Vrouwen [forvo=vrouwen,nl]
我知道使用 file_get_contents() 不是推荐选项,但如果我想每行使用多个 Forvo-tags,我是否还应该找到 preg_replace_callback 的另一种解决方案?
<?php
// Replace forvos in the lesson
$lesson_body = $lesson['Lesson']['body'];
function forvize($match) {
$word = $match[1];
$language = $match[2];
$link = "http://apifree.forvo.com/action/word-pronunciations/format/js-tag/word/".$word."/language/".$language."/order/rate-desc/limit/1/key/API_KEY/";
$link = file_get_contents($link);
return $link;
}
//URL's
$lesson_body = preg_replace_callback("/\[forvo\=(.*),(.*)\]/", 'forvize', $lesson_body);
?>