if its not going to change at all this is probably an easy way.
$special = array("Special Sunday",
"Special Monday",
"Special Tuesday",
"Special Wednesday",
"Special Thursday",
"Special Friday",
"Special Saturday"
);
echo $special[date("w")];
You can probably make it a multi dimensional array also if you want to have certain elements added to it.