0

我网站上的日期名称是英文的。

如何获取俄语中的日期名称?

在 JavaScript 中,我尝试在代码中替换 Tuesday->Вторник 但它不起作用。

代码:

<?php
$ip = $_SERVER['REMOTE_ADDR'];
$url = 'http://api.sypexgeo.net/xml/'. $ip .'';
$xml = simplexml_load_string(file_get_contents($url));
$loc_array = array($xml->ip->city->lat,$xml->ip->city->lon);
$loc_safe = array();
foreach($loc_array as $loc){
    $loc_safe[] = urlencode($loc);
}
$loc_string=implode(',', $loc_safe);
$json = file_get_contents('http://api.wunderground.com/api/232323***/satellite/webcams/forecast/q/' . $loc_string . '.json');
$obj = json_decode($json, true);    
?>    

<?

$html .= "</h2><table cellpadding=4 cellspacing=3><tr>";

    foreach ($obj['forecast']['simpleforecast']['forecastday'] as $arr) {

        $html .= "<td align='center'>" . $arr['date']['weekday'] . "<br />";
        $html .= "<img src='http://icons-pe.wxug.com/i/c/k/" . $arr['icon'] . ".gif' border=0 /><br />";
        $html .= "<font color='red'>" . $arr['high']['celsius'] . '&deg;C' . " </font>";
        $html .= "<font color='blue'>" . $arr['low']['celsius'] . '&deg;C' . "</font>";
        $html .= "</td>";    
    }
    $html .= "</tr></table>";

echo $html;
?>


<script type="text/javascript">

window.onload=function(){

//I try, but not replace
$("td:contains('Tuesday')").html("Вторник");      
};

</script>
4

2 回答 2

1

您可以尝试定义一个 JSON 对象,例如:

days = { "name of the day": "name of the day in Russian" }

然后而不是使用$arr['date']['weekday']use days[$arr['date']['weekday']]

注意:我实际上不知道 php 语法,但类似的东西应该可以工作。

于 2016-11-25T07:26:41.540 回答
1

作为一个选项,您可以更改对 wunderground API 的调用。包括语言设置/lang:xy。像这样的东西:

https://api-ak-aws.wunderground.com/api/8dee7a0******/satellite/webcams/forecast/lang:RU/units:metric/v:2.0/q/CWEW.json
于 2016-11-22T14:48:39.540 回答