Jump to content
Fórum Script Brasil
  • 0

[Dúvida] Retornando mês por extenso


DavidsonP

Question

3 answers to this question

Recommended Posts

  • 0

formato dd/mm/aaaa seria

date('d/m/Y', $timestamp);
onde $timestamp possui o timestamp da data a ser exibida. Se no DB a data está 2 fev 2012, você pode fazer uma função que converta para o formato que deseja... Fiz uma aqui:
function converteData($data){
    $data = explode(" ", $data, 3);
    $retorno .= $data[0];
    
    switch($data[1]){
        case "jan": $retorno .= "/01/"; break;
        case "fev": $retorno .= "/02/"; break;
        case "mar": $retorno .= "/03/"; break;
        case "abr": $retorno .= "/04/"; break;
        case "mai": $retorno .= "/05/"; break;
        case "jun": $retorno .= "/06/"; break;
        case "jul": $retorno .= "/07/"; break;
        case "ago": $retorno .= "/08/"; break;
        case "set": $retorno .= "/09/"; break;
        case "out": $retorno .= "/10/"; break;
        case "nov": $retorno .= "/11/"; break;
        case "dez": $retorno .= "/12/"; break;
    }
    
    $retorno .= $data[2];
    return($retorno);
}

Ela recebe a data no formato 2 fev 2012 e retorna 2/02/2012.

Link to comment
Share on other sites

  • 0

Provavelmente porque o timestamp é inválido.

O timestamp é um número, representa a quantidade de segundos desde a época UNIX (January 1 1970 00:00:00 GMT).

A função time() retorna o timestamp atual.

Já se você quiser obter o timestamp de uma data qualquer, pode usar mktime().

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...