Jump to content
Fórum Script Brasil
  • 0

Validar Data


Guest - Rafael -

Question

Guest - Rafael -

alguém sabe me dizer se o PHP tem alguma função que valida data?

exemplo:

usuario entrou com a data: 30 de fevereiro de 1960

essa é uma data inválida

ou 31 de abril de 2003 tambem é inválida.

O PHP tem alguma função q verifica isso ou tenho que criar o código???

Valeuu

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

eu criei esse pequeno script que eu espero que te ajude.....

Index.php

<html>

<head>

<title>Validando Datas</title>

</head>

<body>

<form method="post" action="valida.php">

Informe a Data: <input type="text" name="data" size="10" maxlength="10"> (dd/mm/yyyy)

<br>

<input type="submit" name="validar" value="Validar">

</form>

</body>

</html>

valida.php

<?

$separa = explode("/",$data);

if($separa[0]>31 || $separa[1]>12 || strlen($separa[2])!=4) {

echo "A data $data é inválida<br>";

} else {

echo "A data $data é válida";

}

?>

Não sei se está funcionando perfeitamente, mas parece estar td ok.. :D

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...