wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



calendar_week_mod › WordPress Function

Seit1.5.0
Veraltetn/v
calendar_week_mod ( $num )
Parameter:
  • (int) $num Number of day.
    Erforderlich: Ja
Gibt zurück:
  • (float) Days since the start of the week.
Definiert in:
Codex:

Gets number of days since the start of the week.



Quellcode

function calendar_week_mod( $num ) {
	$base = 7;
	return ( $num - $base * floor( $num / $base ) );
}