我正在将我的网站翻译成不同的语言,并且我有超过 130 个页面,所以我想通过一个将替换关键字
IE 的函数传递我的 .php 文件:附件 = อุปกรณ์<br /> 这是英语到泰语。
但是我可以使用我的方法让它工作......我在这些页面中有php(显然),输出只显示html而不执行php
是否有标题方法或我必须在我的 php 页面开头传递的东西..
这是我用来查找文本结果然后从我的 php 文件中替换它们的函数。
<?php
// lang.php
function get_lang($file)
{
// Include a language file
include 'lang_thai.php';
// Get the data from the HTML
$html = file_get_contents($file);
// Create an empty array for the language variables
$vars = array();
// Scroll through each variable
foreach($lang as $key => $value)
{
// Finds the array results in my lang_thai.php file (listed below)
$vars[$key] = $value;
}
// Finally convert the strings
$html = strtr($html, $vars);
// Return the data
echo $html;
}
?>
//这是lang_thai.php文件
<?php
$lang = array(
'Hot Items' => 'รายการสินค้า',
'Accessories' => 'อุปกรณ์'
);
?>