Solution for Chinese characters in phpmssql date. For example, the page will be displayed as 2005 on May 23, after reading data from May 23, which will cause a lot of inconvenience to program processing. Some information found that php. ini has the date processing function by default. For example, the page will be displayed as 2005 on May 23, December 23 after reading the code. this will cause a lot of inconvenience to the program processing. Some information found that php. ini has the date processing function by default.
Solution:
Method 1: define ini_set ("mssql. datetimeconvert", "0") at the beginning of the php document ″);
Method 2: modify php. ini and find; mssql. datetimeconvert = On. remove the semicolon and change on to off. restart apache.
Method 3: convert data using the SQL convert () function, for example:
SELECT id, title, convert (char (10), news_time, 102) as publish_time, content FROM news
After reading the token, the page will be displayed as: 2005, January 1, December 23, which will cause a lot of inconvenience to program processing. Some information found that php. ini has the date processing function by default. Solution...