Veritabanı dan Format Tarihi Sayısı

0 Cevap php

Emin değilim bu soruyu düzenlemek ya da sadece farklı bir yazı başka bir soru sormak gerekir eğer. Ben zor bir zaman sordum başlangıçta ne tersini yapıyor yaşıyorum. Nasıl php "tarih numarasını" olsun. Ben bu yüzden veritabanında zaten ne karşılaştırmak benim sorguda kullanabilirsiniz bir değişkene geçerli tarih numarasını atamak istediğiniz.

I can not see the SQL Server database but I am connecting to it using ODBC and PHP on a Linux box. I was told that the field "meeting_start" was a "Date Number". When I get the value of the "meeting_start" the format looks like this.

2010-08-24 20:00:00.000 

I need both the date and time but for different parts of my function. Is there a way to extract the data for the date and save to a variable and then extract the data for the time and save to a different variable. Below is me trying to take a stab at it.

$time_date_data = "2010-08-24 20:00:00.000"

$meeting_date = get_date($time_date_data); 

$meeting_time = get_time($time_date_data);

0 Cevap