我需要生成一個列表的HTML代碼,在當天之後的10個開放日的列表中,開放日期是指工作日(m,t,w,t和f),我是使用下面的函數將日期翻譯法語:基於當前日期的日期計數器
function f_date() {
$temps = time();
$jours = array('Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi');
$jours_numero = date('w', $temps);
$jours_complet = $jours[$jours_numero];
$NumeroDuJour = date('d', $temps);
$mois = array(' ', 'Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre');
$mois_numero = date("n", $temps);
$mois_complet = $mois[$mois_numero];
$an = date('Y', $temps);
$fr_temps = "$jours_complet, $NumeroDuJour $mois_complet $an";
return "$fr_temps";
}
echo "<br/>".f_date();
,我想產生以下結果:
<select name="ladate">
<option selected="selected" value="Mardi, 29 mai 2012">29 mai 2012</option>
<option value="Mercredi, 30 mai 2012">30 mai 2012</option></select>
....
<option value="Vendredi, 15 juin 2012">15 juin 2012</option></select>
</select>
請告訴我,如果你需要更多的信息。
謝謝。
這裏有什麼問題?你有什麼麻煩? –
使用哪些php代碼,考慮php函數,以生成當天的下列10個工作日。問題是服務器沒有更新版本的PHP,所以我需要使用這個PHP函數進行翻譯,並生成HTML ...並且我不知道如何繼續:/ – Zatla00