• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Perl localtime时间函数的应用介绍

    1. 一般使用:

    @nowtime=localtime();
    #($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime();
    注意:
    $mon+1,$year+1900;
    $now_string = localtime;  # e.g., "Thu Oct 13 04:54:34 1994"

    2.如果要把时间保存在数据库中,可以先将其保存为字符串,然后读出时对字符串再处理。

    @nowtime=localtime();
    $nowstring=join(',',@nowtime);
    将$nowstring保存;
    读取:
    @nowtime=split(',',$nowstring);

    更多内容请参考:http://perldoc.perl.org/functions/localtime.html

    您可能感兴趣的文章:
    • Linux/Unix下安装Perl模块的两种方法分享
    • Perl中处理时间的几个函数
    • 讲Perl中的本地时间与UNIX时间戳间相互转换的方法
    上一篇:分享下perl胶水实现前后台对接的方法
    下一篇:让apache2以cgi方式运行perl cgi程序的实现方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Perl localtime时间函数的应用介绍 Perl,localtime,时间,函数,的,