WP_HTML_Span::__construct()
Constructor.
Метод класса: WP_HTML_Span{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WP_HTML_Span = new WP_HTML_Span(); $WP_HTML_Span->__construct( $start, $end );
- $start(int) (обязательный)
- Byte offset into document where replacement span begins.
- $end(int) (обязательный)
- Byte offset into document where replacement span ends.
Список изменений
С версии 6.2.0 | Введена. |
Код WP_HTML_Span::__construct() WP HTML Span:: construct WP 6.3.1
public function __construct( $start, $end ) { $this->start = $start; $this->end = $end; }