我需要比较两种语言文件-英语和德语.每个文本文件每行只有一个单词/短语.第一语言的单词/短语[x]是第二语言的单词/短语[x].翻译的单词在第二个文件的同一行上.
我尝试使用以下代码获取翻译,但似乎该循环不起作用.我总是“无”.有任何想法吗?
function translation($word,$service,$sprache1,$sprache2){
$typus ="transl";
$mypath = "data/".$service."/";
mkdir($mypath,0777,TRUE);
//fh - First language file
$myFile = $mypath."".$typus."-".$sprache1.".txt";
$fh = file($myFile) or die("can't open file");
//fh2 - Second language file
$myFile2 = $mypath."".$typus."-".$sprache2.".txt";
$fh2 = file($myFile2) or die("can't open file");
$x=0;
$result = "none";
foreach ($fh as $line) {
if (stripos($word,$line))
{$result = $fh2[$x];
break;
}
$x=$x+1;
}
return $result;
}
解决方法:
我认为您的问题是错误的if陈述.
关键是,stripos(如strpos)可以返回0或false.
例如,如果您在单词“ cats”中搜索“ cat”,stripos将返回0,因为它是cat-string的第一个位置.
另一方面,如果您在“ cats”一词中搜索“ dog”,则stripos将返回false,因为未找到任何内容.
因此,在您的函数中,if情况应更严格:
if (stripos($word,$line) !== false)
这意味着即使从位置0开始也可以找到您的单词.
您当前的if语句不允许接受0(零)值.
标签:file,php
来源: https://codeday.me/bug/20191028/1954418.html