Jump to content

PHP 5.3.6 Question


adam84

Recommended Posts

Howdy,

 

I have a question about Dates in PHP 5.3.6.

I queried my database (SQL Server 2008) and I got back two columns, a date(StartDate) and a time(StartTime). The software we used only allows the user to enter a StartDate, so that field always has a value, but there are instances where the StartTime is null (no time set). What I want to do is if there is a StartTime, concat it to the StartDate. If there is not StartTime, I want to add a default time. But when I do that, I get an error saying that I cannot combine a string and a date. I really do not understand why this is happening. I set up PHP 5.3.6 on a server, so I am not sure if there something in the php.ini file that is not allowing me or if this is something new. Some help please! Thanks

 

if( $row['StartTime'] != null )
$sTime = $row['StartDate'] . " " . $row['StartTime']; //What I want '2011-05-03 17:58:12.000'
else
$sTime = $row['STartDate'] . " 00:00:00.000"; //What I want '2011-05-03 00:00:000'

Link to comment
Share on other sites

I am using SQLSRV to access my Database.

 

I receive the correct value, I just cannot do anything with it because it is a date. I cannot even explode the returned value because it says its type date not type string

Link to comment
Share on other sites

this should point you in the right direction, it would need altering to test it with your database values

<?Php
$date = strtotime("2011-05-03");
echo date("y-m-d H:i:s",$date);
?>

 

<?php
date("y-m-d H:i:s",$row['STartDate']); //is the T in StartDate a typo?
?>

Link to comment
Share on other sites

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.