WordPress功能函数calendar_week_mod()
wordpress功能函数calendar_week_mod(),从一周的开始计算天数。
参数
$num
(int) (必需) 天的数量。
返回
(float)从本周开始的天数。
来源
文件: wp-includes/general-template.php
function calendar_week_mod( $num ) {
$base = 7;
return ( $num - $base * floor( $num / $base ) );
}
本站所有文章和图片均来自用户分享和网络收集,文章和图片版权归原作者及原出处所有,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服处理。