WP_Duotone::colord_parse()
Tries to convert an incoming string into RGBA values.
Direct port of colord's parse function simplified for our use case. This version only supports string parsing and only returns RGBA values.
Метод класса: WP_Duotone{}
Хуков нет.
Возвращает
Массив|null
. An array of RGBA values or null if the string is invalid.
Использование
$result = WP_Duotone::colord_parse( $input );
- $input(строка) (обязательный)
- The string to parse.
Список изменений
С версии 6.3.0 | Введена. |
Код WP_Duotone::colord_parse() WP Duotone::colord parse WP 6.6.2
private static function colord_parse( $input ) { $result = self::colord_parse_hex( $input ); if ( ! $result ) { $result = self::colord_parse_rgba_string( $input ); } if ( ! $result ) { $result = self::colord_parse_hsla_string( $input ); } return $result; }