Home  >  Article  >  Backend Development  >  PHP Mysql编程之高级技巧_PHP

PHP Mysql编程之高级技巧_PHP

WBOY
WBOYOriginal
2016-06-01 12:24:58647browse

笔者做了以下的尝试。
 $data_time="1998-12-31 23:59:59";
 $connect_id=mysql_connect('localhost');
 $query_id=mysql_query("SELECT DATE_ADD(' $data_time',INTERVAL 1 YEAR)", $connect_id);
 $data_time=mysql_result( $query_id,0);
mysql_close( $connect_id);
echo  $data_time;
?>
举一反三,我们在编程过程中还可以利用Mysql提供的其他函数。
当然Mysql提供的函数及其用法就拜托大家去查手册了。
不当之处敬请指正!
作者Email:fancao0515@0451.com
fancao0515@21cn.com
彷徨一小生

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn