我需要一种智能方式,允许用户在课程中发布Forvo的语音片段。 Forvo要求使用$ this-> Forvo-> word('hola','es')来使用助手。
一个想法是允许用户使用像[forvo = hola,es]这样的bb代码,但是如何实现呢?我唯一能想到的就是使用了很多substr,strpos ......这需要至少35行代码,而且不会很安全。
<?php
// Replace forvos in the lesson
$lesson = $lesson['Lesson']['body'];
// Todo:
// Replace [forvo=hello,en] by javascript from
// $this->Forvo->word('hello', 'en');
// I seem unable to use regex's like this
$pattern[0] = "/\[forvo\=(.*),(.*)]";
$replace[0] = $this->Forvo->word($1, $2);
echo preg_replace($pattern, $replace, $lesson);
?>
课程示例如下:
Pronounciations in Dutch
een [forvo=een,nl]
en [forvo=en,nl]
de [forvo=de,nl]
in [forvo=in,nl]
met [forvo=met,nl]
答案 0 :(得分:0)
谢谢你,Waygood。它适用于preg_replace_callback。
<?php
// Replace forvos in the lesson
$lesson = $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/123456789/";
$link = file_get_contents($link);
return $link;
}
//URL's
$lesson = preg_replace_callback("/\[forvo\=(.*),(.*)\]/", 'forvize', $lesson);
?>