Validate::sanitize_boolean( null|string $value = null )

Description #

Sanitize field value and return only boolean.

Parameters #

  • $value
    null | string (Optional) String to sanitize. Default value: null

Source #

File: lib/class-validate.php

	public static function sanitize_boolean( $value = null ) {
		if ( ! is_null( $value ) ) {
			return (bool) $value;
		}
	}

Leave a Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Add your comment