date.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. header('Content-type: text/html; charset=utf-8');
  3. require __DIR__ . '/date.inc';
  4. $formatter = new DateFormatter();
  5. ?><!DOCTYPE html>
  6. <html>
  7. <head>
  8. <style type="text/css">
  9. .fullpage {
  10. width: 100%;
  11. height: 100%;
  12. }
  13. .fullpage iframe {
  14. width: 90%;
  15. height: 80em;
  16. }
  17. input[type="text"] {
  18. width: 20em;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <table class="fullpage">
  24. <tr>
  25. <td valign="top" width="40%">
  26. <h1>Date helper</h1>
  27. <p>Saisissez une chaine de format de date PHP dans le champ ci-dessous,
  28. et le site vous renverra la date courante sous le format indiqué.</p>
  29. <p>Le cadre à droite contient la documentation de référence de la
  30. fonction PHP date().</p>
  31. <form method="POST">
  32. <table>
  33. <tr>
  34. <td><label for="format">Format:</label></td>
  35. <td><input type="text" name="format" value="<?php echo $formatter->format; ?>" /></td>
  36. </tr>
  37. <tr>
  38. <td><label for="result">Résultat:</label></td>
  39. <td><input disabled="disabled" type="text" name="result" value="<?php echo $formatter->date(); ?>" /></td>
  40. </tr>
  41. </table>
  42. <input type="submit" name="apply" value="Formater" />
  43. <input type="submit" name="reset" value="Valeur par défaut" />
  44. </form>
  45. </td>
  46. <td valign="top">
  47. <iframe
  48. src="http://fr2.php.net/manual/fr/function.date.php#refsect1-function.date-parameters" />
  49. </td>
  50. </tr>
  51. </table>
  52. </body>
  53. </html>