Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8294895
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T14:23:31+00:00 2026-06-08T14:23:31+00:00

I am making a request to twitter API and I want to extract the

  • 0

I am making a request to twitter API and I want to extract the time from date in php and store in mysql..Does anyone know how to do that?

The time and date that i get from the results is this …created_at”: “Thu, 26 Jul 2012 22:16:59 +0000”

Thank you

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T14:23:33+00:00Added an answer on June 8, 2026 at 2:23 pm

    Storing timestamps in database

    Use strtotime() on PHP side and FROM_UNIXTIME() on MySQL’s side.

    So basically your code, in short, may look like this:

    $twitter_timestamp = 'Thu, 26 Jul 2012 22:16:59 +0000';
    $php_time = strtotime($twitter_timestamp);
    $query = 'INSERT INTO `some_table` VALUES ("' . $php_time . '");';
    

    The above assumes you are storing the timestamp in the column with proper type (TIMESTAMP). To read more on differences between TIMESTAMP, DATE and DATETIME see this documentation page: MySQL Documentation: The DATE, DATETIME, and TIMESTAMP Types.

    Storing time as string

    If you want to store the timestamp in the way that is not timezone-aware (anything else than TIMESTAMP and not including timezone information), you will need to form the string representing your timestamp on the PHP side:

    $twitter_timestamp = 'Thu, 26 Jul 2012 22:16:59 +0000';
    $php_time = strtotime($twitter_timestamp);
    // Optionally set local timezone:
    date_default_timezone_set('America/Los_Angeles');
    $php_timestamp = strftime('%T', $php_time); // will give "%H:%M:%S" timestamp
    $query = 'INSERT INTO `some_table` VALUES ("' . $php_timestamp . '");';
    

    Note, that date_default_timezone_set() call is optional – if you want the time in some specific timezone, different than current. The above assumes you want timestamp in the form of “HH:MM:SS“.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am making request on server , having spaces in URL http://xxxxxxxx.com/api/api.php?func=showAllwedsdwewsdsd&params[]=Saudi%20Arab&params[]=all I was
I am making an ajax request to an external php file, then returning some
I am making an ajax request from a jquery script to one of my
I'm making a request to the google closure compiler API service: $content = file_get_contents('file.js');
I making a php server/page which is supposed to capture a users twitter feed
I'm making a request to a JSON page using jQuery's $.getJSON method, and from
I'm making a request from an UpdatePanel that takes more then 90 seconds. I'm
I am making an app for twitter integration using Twitter4j API. Right now my
Here I am trying to request data from REST API data and present in
Whenever I try and make any Twitter request, my application always hangs. This does

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.