■通常のFormヘルパでの出力
<?php echo $form->dateTime('normal', 'YMD', 'NONE', null , array(
	'minYear'=>1900, 
	'maxYear'=>date('Y'), 
	'separator'=>'-'
), true); ?>
--


■拡張したFormヘルパでの出力
<?php echo $exform->dateYMD('extend', null , array(
	'minYear'=>1900, 
	'maxYear'=>date('Y'), 
	'separator'=>array(" 年度 "," 月 "," 日 "),
), true); ?>
年度