Validate::sanitize_intval( null|string $value = null )
Description #
Sanitize field value using intval.
Parameters #
- $valuenull | string (Optional) String to sanitize. Default value: null
Source #
File: lib/class-validate.php
public static function sanitize_intval( $value = null ) { if ( ! is_null( $value ) ) { return intval( $value ); } }
Expand full source code Collapse full source code View on GitHub: lib/class-validate.php:103
Add your comment