anybody know a better way / shortcut for doing this:
$gda = getdate();
$current_year = $gda['year'];
$return = myfuction($current_year);
I just want to use the current year as a function arg. So, I don't even want to use the var $current_year.
Maybe do this block in one line.