php函数strtotime的扩展
PHP函数strtotime的扩展,针对函数strtotime +月时候的BUG做到扩展!
function add_month ( $base_time = null, $months = 1 )
{
if ( is_null ( $base_time ) )
$base_time = time();
$x_months_to_the_future = strtotime ( "+" . $months . " months", $base_time );
$month_before = ( int ) date ( "m", $base_time ) + 12 * ( int ) date ( "Y", $base_time );
$month_after = ( int ) date ( "m", $x_months_to_the_future ) + 12 * ( int )
date ( "Y", $x_months_to_the_future );
if ( $month_after > $months + $month_before )
{
$x_months_to_the_future = strtotime ( date ( "Ym01His", $x_months_to_the_future ) . " -1 day" );
}
return $x_months_to_the_future;
}
一个经过完善设计有着及其强大的会员互动和独特创新的内容管理系统。主要功能模块包括:文章频道、图片频道、下载频道、动漫频道、音乐频道、影视频道、商城频道、供求频道、采集管理 、专题频道等等。系统通用模块:用户管理、博客日志管理、相册管理、音乐盒管理、朋友圈管理、广告管理、公告管理、模板管理、网站信息配置、高级自定义SQL扩展标签,RSS在线订阅功能、网站统计、邮件列表、邮件群发、数据库管理、站内短消
0
以上就是PHP函数strtotime的扩展的内容,更多相关内容请关注PHP中文网(www.php.cn)!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号