我想查询我的数据库以寻找一些占位符的翻译(字典功能)。 对于错误处理,我希望输出占位符,它不存在于字典数据库中。
查询示例:
SELECT `de` as `text` FROM `dictionary` WHERE `name` IN
('button_search','eventlist_addons','eventlist_city',
'eventlist_date','eventlist_name','gender_both',
'gender_female','gender_male','startmenu_insert','startmenu_register')
ORDER BY `name`
我可以确定,如果给出的记录数与我制作的记录数不一样。但现在我想知道,哪个占位符/不在数据库中并输出它们。
我可以在MySQL中使用查询来完成它,还是在PHP中有一种很酷的方式?
我的功能是:
function dictionary($text)
{
global $db,$lang;
preg_match_all('/##D##(.*)##D##/mU',$text,$matches);
$matches[0] = array_unique($matches[0]);
$matches[1] = array_unique($matches[1]);
sort($matches[0]);
sort($matches[1]);
$sql = "SELECT `".$lang."` as `text` FROM `dictionary` WHERE `name` IN ('".implode("','",$matches[1])."') ORDER BY `name`";
$result = $db->query($sql);
$num = $db->num($result);
if($num > 0)
{
if($num == $matches[1])
{
while($trans = $db->assoc($result))
{
$replace[] = $trans['text'];
}
}
else
echo_msg("Missing Placeholder","Error",true);
$text = str_replace($matches[0],$replace,$text);
}
return $text;
}
修改
Long stroy short:我想得到一个结果,它包含所有值,而不是“name”列中的一个监听