我在下面给出了一个表单字段。
`<form method='post'>
<input type='hidden' name='var'/>
<input type='hidden' name='en_word' value='HOME'/>
<input type='text' name='new_word'/>
<input type='hidden' name='en_word' value='REWARD'/>
<input type='text' name='new_word'/>
<input type='hidden' name='en_word' value='LEADERBOARDS'/>
<input type='text' name='new_word'/>
<input type='submit'>
</form>`
当我输入内容并单击提交按钮时,它将执行文件写入功能(fwrite)。如果我输入了第一个输入字段,然后我点击提交按钮,我将获得“家”和“我输入的任何内容”。现在我想在translation.php中替换НАЧАЛО用新输入的单词(“Home”=&gt;“НАЧАЛО”)。我没有НАЧАЛО。现在我想替换translation.php中不存在的输入词。
$var = $_POST['var'];
$new_words = $_POST['new_words'];
$en_word = $_POST['en_word'];
for($i=0; $i<count($var); $i++)
{
$file = '/www/translation.php';
$handle = fopen($file, "r");
$input = fread($handle, filesize($file));
$stringData = html_entity_decode($new_words[$i], ENT_COMPAT, 'UTF-8');
$first_str = "\"$en_word[$i]\""."=>";
$string="\"$stringData\"".",\n";
fclose($handle);
if(!eregi($first_str,$input) && !eregi($string,$input))
{
$myFile = "/www/translation.php";
//echo $en_word[$i];
$fh = fopen($myFile, 'a') or die("can't open file");
$stringData = "\"$en_word[$i]\""."=>";
fwrite($fh, $stringData);
$stringData = html_entity_decode($new_words[$i], ENT_COMPAT, 'UTF-8');
fwrite($fh, "\"$stringData\"".",\n");
fclose($fh);
}
elseif (eregi($first_str,$input) && !eregi($string,$input))
{
// here I want to replace the input word if not exist in translation.php.
}`
}
这是translation.php
translation.php包含一个字符串。
"HOME" => "НАЧАЛО",
"REWARDS" => "НАГРАДИ",
"LEADERBOARDS" => "КЛАСАЦИИ",
"LOGIN | SIGN UP" => "ВХОД / РЕГИСТРАЦИЯ",
"STORE" => "МАГАЗИН",
"LOGOUT" => "ИЗХОД",
"SET" => "ПОТВЪРДИ",
现在我想替换translation.php中不存在的输入词。我该怎么做呢?
有可能吗?请帮我。
抱歉!如果问题不明白,请告诉我,我会解释清楚。
答案 0 :(得分:0)
请将您的HTML更改为:
`<form method='post'>
<input type='hidden' name='var'/>
<input type='hidden' name='en_word[]' value='HOME'/>
<input type='text' name='new_word'/>
<input type='hidden' name='en_word[]' value='REWARD'/>
<input type='text' name='new_word'/>
<input type='hidden' name='en_word[]' value='LEADERBOARDS'/>
<input type='text' name='new_word'/>
<input type='submit'>
`
如果没有,帖子将只有最后一个en_word值。请检查它现在是否有效并重新开始。
由于
答案 1 :(得分:0)
所以你有一个php文件,其中包含某些关键字的翻译,例如“HOME”和“REWARDS”。然后,您有一个表单来更改这些关键字的翻译。在提交时,您想要用新的翻译替换旧的翻译。
也许这段代码可以帮助您解决问题。我首先将整个translation.php加载到$ contents中,然后对其执行preg_replace搜索和替换。
<?php
// prepare $find and $replace for preg_replace.
$find = array("HOME", "REWARD");
$replace = array("whatever", "foobar");
// convert $find into regular expressions for the whole line
foreach ($find as $i => $key)
$find[$i] = '~("'.$key.'"\s*=>\s*")[^"]*(",\r?\n?)~u';
// convert $replace to use the first and second part of any match
// and put the new translation in between
foreach ($replace as $i => $translation)
$replace[$i] = '$1'.$translation.'$2';
// read translation.php
$contents = file_get_contents("translation.php");
// do the replacements
$contents = preg_replace($find, $replace, $contents);
// debug output, just delete later
var_dump($find, $replace, $contents);
// you want to save your changes into translation.php
// file_put_contents("translation.php", $contents);
?>
如果您必须在translation.php中管理多个值,请考虑使用像mysql这样的数据库来执行此操作。使用mysql更改值甚至拥有多种语言支持更容易。
还有一个用于处理文本翻译的特殊库:http://php.net/manual/de/book.gettext.php