It sets the ISO date and is an alias of DateTime::setISODate()
Example
<?php
$date1 = date_create();
date_isodate_set($date1, 2007, 2);
echo date_format($date1, ‘Y-m-d’);
?>
Output
2007-01-08