Connaissances Informatiques >> programmation >> PHP /MySQL Programmation >> Content
  Derniers articles
  • Comment faire pour installer MySQL s…
  • Comment s'inscrire pour le chat Flas…
  • MySQL Tutorial clé primaire 
  • Comment mettre à jour un champ dans…
  • Salaire d'un Jr Programmeur PHP 
  • Comment analyser les résultats Goog…
  • Comment enregistrer un fichier PHP e…
  • Comment télécharger une barre de p…
  • Comment lire un fichier texte en PHP…
  • Comment puis-je tester un fichier PH…
  •   PHP /MySQL Programmation
  • C /C + + Programming

  • Computer Programming Languages

  • Delphi Programming

  • Programmation Java

  • Programmation JavaScript

  • PHP /MySQL Programmation

  • programmation Perl

  • Programmation Python

  • Ruby Programming

  • Visual Basics programmation
  •  
    PHP /MySQL Programmation

    Comment Timestamp pour MySQL PHP

    PHP et MySQL ont des façons différentes pour stocker horodateurs , il est donc nécessaire de les convertir dans les deux sens lorsqu'ils traitent avec les deux langues différentes. Vous pouvez utiliser PHP pour accéder aux informations de base de données MySQL et ensuite l'utiliser sur des pages Web . Magasins PHP horodateurs comme Unix entier , tandis que MySQL stocke les horodateurs dans un format " DATETIME " unique . PHP dispose de fonctions pour convertir les horodateurs et-vient entre les deux formats. Instructions
    1

    Ouvrez votre fichier PHP dans un éditeur de texte tel que Notepad.
    2

    magasin un timestamp PHP dans une variable locale . Vous pouvez accéder à l'horodatage Unix actuelle comme un entier avec la fonction " temps ": " CUR_TIME $ = time () ; " par exemple
    3

    Utilisez la fonction "date" avec PHP . la " date (' Ymd H: i : s ", phptimestamp ) " format à convertir un timestamp PHP dans une chaîne de DATETIME MySQL. Dans l'exemple précédent , "$ my_mysqldate = date (' Ymd H: i : s ", CUR_TIME $ ) ; " stocke l'heure actuelle dans une chaîne de DATETIME MySQL
    4

    Utilisez le PHP" strtotime . ( mysql_date ) " fonction pour convertir une chaîne de DATETIME MySQL dans un timestamp PHP. Par exemple, "$ my_phpdate = strtotime ( my_mysqldate $ ) ; ", où " my_mysqldate " est une chaîne de DATETIME MySQL existant
    5

    Enregistrez votre fichier PHP et fermez l'éditeur de texte
    < . . br>

     
    Article précédent:
    Article suivant:
    Articles recommandés
  • Comment créer et supprimer un dossier utilisant PHP 
  • Retarder les fonctions de PHP 
  • Comment configurer MySQL sur un ordinateur Windows PC 
  • Comment utiliser PHP SQLite comme un cache 
  • Y at-il un substitut pour PHP bannière Ad Manager 
  • Comment connecter une chaîne en PHP 
  • Comment faire un chat avec PHP 
  • Comment faire pour convertir tout en majuscules Avec PHP 
  • PHP Byte Conversion 
  • Comment faire pour accéder aux variables d'un autre fichier PHP 
  • Connaissances Informatiques © http://www.ordinateur.cc