".ltrim($year_value)."年\n";
','
//print_r($archives_array);
//月別アーカイブ数分繰り返し
foreach ( $archives_array as $archives_value) {
//1で取得した年と、2の各月別アーカイブの文字列を比較
if ( intval(strip_tags($archives_value)) == intval($year_value) ) {
//2の月別アーカイブの各行のhtmlからYYYY年部分を除去して表示。
$tmp = str_replace(array(intval($year_value).'年',intval($year_value),'','','
'),'',ltrim($archives_value));
$tmp_len = mb_substr($tmp,2,3);
$tmp_mon = substr($tmp,0,2);
$tmp_mon = ereg_replace("^0+", "", $tmp_mon);
print "
";
}
}
}
?>