我正在创建一个小时日历(预订表单),并且我创建了我的日历
$today = time();
if (date('D', $today) === 'Mon') {
$timestamp = strtotime('this Monday');
} else{
$timestamp = strtotime('last Monday');
}
$days = array();
$dates = array();
for ($i = 0; $i < 7; $i++) {
$days[] = strftime('%A <br /> %d %b %Y', $timestamp);
$dates[] = strftime('%d %b %Y', $timestamp);
$timestamp = strtotime('+1 day', $timestamp);
}
$return .= '<table class="reservation_time_table">
<tr><th>'.esc_html__('Hours', 'time_reservation').'</th>';
foreach ($days as $day => $day_value) {
$today_class = ( strtotime(gmdate('d M Y', $today)) == strtotime(strip_tags($day_value)) ) ? 'class="today"' : '';
$return .= '<th '.$today_class.'>'.$day_value.'</th>';
}
$return .= '</tr>';
for ($hour=8; $hour < 23 ; $hour++) {
$return .= '<tr>';
$return .= '<th>'.$hour.':00</th>';
foreach ($dates as $date => $date_value) {
$full_hour = $hour. ':00';
$table_date = strtotime($date_value. ' ' .$full_hour);
$reserved = (in_array($table_date, $full_reserved_array)) ? 'disabled' : '';
$disabled_class = ($today > $table_date) ? 'disabled' : '';
$return .= '<td class="reservation_time '. $disabled_class. ' '. $reserved .'" data-time="'.$table_date.'"></td>';
}
$return .= '</tr>';
}
$return .= '</table>';
我的$reserved
变量中有一系列预订日期。
既然我正在研究的网站建立在wordpress上并用WPML翻译,我可以检查网站的语言,如:
if( in_array('sitepress-multilingual-cms/sitepress.php', get_option('active_plugins')) ){
$current_lang = ICL_LANGUAGE_CODE;
} else{
$current_lang = '';
}
因此,例如对于瑞典语,这将是sv
,对于德语de
等。
所以我用Google搜索了一下,我发现我可以使用setlocale()
更改时间和日期的格式。所以我试过了:
if ($current_lang == 'sv') {
setlocale(LC_ALL, 'sv-SE');
} elseif($current_lang == 'de') {
setlocale(LC_ALL, 'de-DE');
} else{
setlocale(LC_ALL, 'en-US');
}
我也尝试过:
setlocale(LC_TIME, 'sv-SE');
但我的前端没有任何改变。
我尝试将if-else
循环放在$timestamp
里面(甚至更改了名称以匹配翻译),我将for
循环放入,但没有任何改变。
使用php构建日历时如何处理翻译?
答案 0 :(得分:0)
好的,答案是我错过了正确的语言环境。但这只是指出了更大的问题 - 如果我部署的服务器没有它,那就不行了。
所以解决方案是在服务器上安装正确的本地化
sudo locale-gen sv_SE
sudo locale-gen sv_SE.UTF-8
或您需要的任何语言......