Jump to content

[SOLVED] check date() w/ empty()/null var


programguru

Recommended Posts

Hmmm... I don't see an out on this, but was wondering if you know of a function or method to do this business:

 

My script works perfect with the exception of my empty() function, because I see the date() function creates a value regardless if my field $date_start (from my table) is in fact empty.

 

I'm just trying to echo nothing if the value of $date_start is NULL (blank). Any ideas where to look on this one?

....

$date_start = $row['date_start'];

$date_end = $row['date_end'];

 

$date_start_converted = date("M jS, Y", strtotime($date_start));

$date_end_converted = date("M jS, Y", strtotime($date_end));

 

if (empty($date_start_converted)) {

$date_start_converted = "";

}

 

....

 

Link to comment
https://forums.phpfreaks.com/topic/148326-solved-check-date-w-emptynull-var/
Share on other sites

Erm..

 

<?php
$date_start = $row['date_start'];
$date_start_converted = "";
if (!empty($date_start)) {
   $date_end = $row['date_end'];

   $date_start_converted = date("M jS, Y", strtotime($date_start));
   $date_end_converted = date("M jS, Y", strtotime($date_end));
}

?

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.