PHP Класс WC_Validation

Автор: WooThemes
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
format_phone ( mixed $tel ) : string format_phone function.
format_postcode ( $postcode, $country ) : string Format the postcode according to the country and length of the postcode.
is_GB_postcode ( string $to_check ) : boolean Check if is a GB postcode.
is_email ( $email ) : boolean Validates an email using wordpress native is_email function.
is_phone ( $phone ) : boolean Validates a phone number using a regular expression.
is_postcode ( $postcode, $country ) : boolean Checks for a valid postcode.

Описание методов

format_phone() публичный статический Метод

format_phone function.
public static format_phone ( mixed $tel ) : string
$tel mixed
Результат string

format_postcode() публичный статический Метод

Format the postcode according to the country and length of the postcode.
public static format_postcode ( $postcode, $country ) : string
Результат string formatted postcode

is_GB_postcode() публичный статический Метод

Check if is a GB postcode.
Автор: John Gardner
public static is_GB_postcode ( string $to_check ) : boolean
$to_check string A postcode
Результат boolean

is_email() публичный статический Метод

Validates an email using wordpress native is_email function.
public static is_email ( $email ) : boolean
Результат boolean

is_phone() публичный статический Метод

Validates a phone number using a regular expression.
public static is_phone ( $phone ) : boolean
Результат boolean

is_postcode() публичный статический Метод

Checks for a valid postcode.
public static is_postcode ( $postcode, $country ) : boolean
Результат boolean