WP_HTML_Attribute_Token::__construct()publicWP 6.2.0

Constructor.

Метод класса: WP_HTML_Attribute_Token{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_HTML_Attribute_Token = new WP_HTML_Attribute_Token();
$WP_HTML_Attribute_Token->__construct( $name, $value_start, $value_length, $start, $length, $is_true );
$name(строка) (обязательный)
Attribute name.
$value_start(int) (обязательный)
Attribute value.
$value_length(int) (обязательный)
Number of bytes attribute value spans.
$start(int) (обязательный)
The string offset where the attribute name starts.
$length(int) (обязательный)
Byte length of the entire attribute name or name and value pair expression.
$is_true(true|false) (обязательный)
Whether the attribute is a boolean attribute with true value.

Список изменений

С версии 6.2.0 Введена.
С версии 6.5.0 Replaced end with length to more closely match substr().

Код WP_HTML_Attribute_Token::__construct() WP 6.7.1

public function __construct( $name, $value_start, $value_length, $start, $length, $is_true ) {
	$this->name            = $name;
	$this->value_starts_at = $value_start;
	$this->value_length    = $value_length;
	$this->start           = $start;
	$this->length          = $length;
	$this->is_true         = $is_true;
}