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



absint › WordPress Function

Seit2.5.0
Veraltetn/v
absint ( $maybeint )
Parameter:
  • (mixed) $maybeint Data you wish to have converted to a non-negative integer.
    Erforderlich: Ja
Gibt zurück:
  • (int) A non-negative integer.
Definiert in:
Codex:

Converts a value to non-negative integer.



Quellcode

function absint( $maybeint ) {
	return abs( (int) $maybeint );
}