日付フォーマット変換

変換前:2012/2/29
変換後:2012-02-29
	$d='2012/2/29';
	echo "変換前:".$d."<br>";
	$d2=date('Y-m-d',strtotime($d));
	echo "変換後:".$d2."<br>";
				
変換前:2012/2/29 12:13:14
変換後:12:13:14
	$d='2012/2/29 12:13:14';
	echo "変換前:".$d."<br>";
	$d2=date('h:i:s',strtotime($d));
	echo "変換後:".$d2."<br>";
				
$d=xxxx
		$d='xxxx';
		echo '$d='.$d."<br>";
		$x=strtotime($d);
		echo $x;