How to change the symbol that appears on Tuesday by a Ç ?
Mycodebelow:
<?phpsetlocale(LC_ALL,"pt_BR", "pt_BR.utf-8", "portuguese" );
date_default_timezone_set('America/Sao_Paulo');
echo ucwords(strftime("%A "));
$dt = date('d/m/Y', time());
echo $dt;
?>