将一个lang函数放在php字符串中

时间:2015-07-08 23:42:55

标签: php mysql string function str-replace

尝试将我的MySQL数据库翻译成PHP。

以下是代码:

$sql = "SELECT Name, Price FROM utf WHERE Name LIKE 'K%'";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
    echo "<div class=\"CSSTableGenerator style=\"width:600px;height:150px;\"><table><tr><th>Name</th><th>Price</th></tr></div>";
    // output data of each row
   while($row = $result->fetch_assoc()) {
    $name = str_replace('K', 'Karambit', $row['Name']);
    echo "<tr><td>".$name."</td><td>".$row["Price"]." ".$row["Trend"]."</td></tr>";
}
   echo "</table>";

选择,按签名字符过滤,然后翻译。

现在,我有一个lang.php文件,其中包含翻译。

这是:

<?php
function lang($phrase){
    static $lang = array(
        'ba' => 'Bayonet',
        'ka' => 'Karambit'
    );
    return $lang[$phrase];
}
?>

我如何把它放在这一行:

$name = str_replace('K', 'Karambit', $row['Name']);

并将'ka' => 'Karambit'替换为'Karambit'

其中没有一项有效:

//attempt 1
$name = str_replace('K', 'lang('ka');', $row['Name']);
//attempt 2
$name = str_replace('K', '$lang('ka');', $row['Name']);
//attempt 3
$word = echo lang('ka');
$name = str_replace('K', '$word', $row['Name']);

1 个答案:

答案 0 :(得分:0)

请勿将function来电添加到引号中,只需使用:

$name = str_replace('K', lang('ka'), $row['Name']);
                       //^^^^^^^^^^ See here

还为您提供另一种选择:

您可以将search => replace值存储到这样的数组中:

$searchReplace = [
    "ba" => "Bayonet",
    "ka" => "Karambit",
];

然后您只需使用strtr()来替换它,例如

$name = strtr($row['Name'], $searchReplace);