Jump to content

Recommended Posts

I am really lost here with this date issue of mine. The below code is the last part of a query:

$defendercheck_3 = $row_checkifattacked3['atdate'];
$defendercheck1_3 = strtotime("$defendercheck_3");
$defendercheck2_3 = date("D", $defendercheck1_3);

 

The query does not return any results as expected, but when echoing the various steps I get following:

 

echo "$defendercheck3"; = nothing (as expected)

 

echo "$defendercheck1_3"; = nothing (as expected)

 

echo "$defendercheck2_3"; =  result! (NOT expected)

 

why does it return anything on "date("D", $defendercheck1_3)" when "$defendercheck1_3" is blank?

You are supplying a null/zero value as the second parameter, which is experted to be a unix timestamp. A zero unix timestamp value is a valid value and corresponds to the Unix Epoch.

 

What were you expecting to get?

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.