Hey guys,

Using PHP I store a datetime in a mySQL table. I am trying to draw that out and reformat the time.

The datetime is contained within the array $user_data['6'] and the format in the mySQL table is set to datetime.

The error I'm getting is Call to a member function format() on a non-object

        $joindate = strtotime($user_data['6']);
        $joindate = $joindate->format('l F Y H:i:s');

Is there a way to get passed this?

Recommended Answers

All 3 Replies

Member Avatar for diafol

pritaeas has the easiest solution IMO.

However, take the time to read the PHP manual carefully: http://php.net/manual/en/function.strtotime.php

int strtotime ( string $time [, int $now = time() ] )

This means that the returned value is an int (integer).
It takes two parameters:
$time (a time string in a recognized format)
$now (an optional parameter - denoted by [, ], which takes an integer based on an actual timestamp - if not supplied, it defaults to the current timestamp - time())

So this:

$joindate = strtotime($user_data['6']);
$joindate = $joindate->format('l F Y H:i:s');

Just doesn't make sense. $joindate most likely has an integer as a value after the first line. You're trying to use it an an object - performing some format method on it - which obviously cannot exist on an integer.

An alternative method would be to use the DateTime object..

Thanks both for your answers, I understand now :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.