年月日からYMD系に変換

2014年6月4日
2014-6-4


ソースコード

$test="2014年6月4日";
$ret=cnvNgpToYmd($test,'-');

echo $test;
echo '<br>';
echo $ret;

/**
 * 年月日表記の文字列からy/m/d型のデータにする。
 * @param  $s	年月日表記の文字列
 * @param  $sp	日付のセパレータ。「/」や「-」の部分
 * @return ymd系の日付文字列。変換できない場合はnul
 */
function cnvNgpToYmd($ngp,$sp='/'){

	$s=str_replace('年',$sp,$ngp);
	$s=str_replace('月',$sp,$s);
	$s=str_replace('日','',$s);

	return $s;

}