我需要一种智能的方式来允许用户在他们的课程中发布来自 Forvo 的语音片段。Forvo 需要使用 $this->Forvo->word('hola', 'es') 来使用帮助程序。
一个想法是允许用户使用像 [forvo=hola,es] 这样的 bb-code,但是如何实现呢?我唯一能想到的就是使用大量的 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]