Exemplo n.º 1
0
function date_year_correct_(&$year)
{
    $year = date_year_correct($year);
}
Exemplo n.º 2
0
 function testYearCorrectReturn()
 {
     $year = 88;
     $year = date_year_correct($year);
     $this->assertEquals($year, 1988);
 }