Home > php教程 > php手册 > body text

PHP编程之高级技巧利用Mysql函数

WBOY
Release: 2016-06-21 09:04:20
Original
963 people have browsed it
尽管PHP为我们提供了很多函数,但有些东西处理起来还是不很方便。譬如PHP提供的日期时间函数就很有限。Mysql为我们提供了不少此类的函数。是否可以利用Mysql函数来处理PHP程序呢?笔者做了以下的尝试。
    $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  



Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!