PHP函数strtotime的扩展

PHP中文网
リリース: 2016-05-25 17:14:29
オリジナル
1098 人が閲覧しました

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; }
ログイン後にコピー

以上就是PHP函数strtotime的扩展的内容,更多相关内容请关注PHP中文网(m.sbmmt.com)!

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のおすすめ
    人気のチュートリアル
    詳細>
    最新のダウンロード
    詳細>
    ウェブエフェクト
    公式サイト
    サイト素材
    フロントエンドテンプレート
    私たちについて 免責事項 Sitemap
    PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!