Ver original// MAL $dateS = strtolower(strftime("%A %d %B %Y", $data));// "friday 20 march 2015" // BIEN$dateS_day = strtolower(strftime("%A", $data));// "friday"$dateS_day_n = strtolower(strftime("%d", $data));// "20"$dateS_month = strtolower(strftime("%B", $data));// "march"$dateS_year = strtolower(strftime("%Y", $data));// "2015"