CMS: Unknown
Server IP: 162.214.74.50
Root:
/home/iideug/public_html/harshils.iideug.com
Directory:
home
/
iideug
/
public_html
/
test
/
wp-includes
/
html-api
File: /home/iideug/public_html/test/wp-includes/html-api/class-wp-html-span.php
<?php /** * HTML API: WP_HTML_Span class * * @package WordPress * @subpackage HTML-API * @since 6.2.0 */ /** * Core class used by the HTML tag processor to represent a textual span * inside an HTML document. * * This is a two-tuple in disguise, used to avoid the memory overhead * involved in using an array for the same purpose. * * This class is for internal usage of the WP_HTML_Tag_Processor class. * * @access private * @since 6.2.0 * @since 6.5.0 Replaced `end` with `length` to more closely align with `substr()`. * * @see WP_HTML_Tag_Processor */ class WP_HTML_Span { /** * Byte offset into document where span begins. * * @since 6.2.0 * * @var int */ public $start; /** * Byte length of this span. * * @since 6.5.0 * * @var int */ public $length; /** * Constructor. * * @since 6.2.0 * * @param int $start Byte offset into document where replacement span begins. * @param int $length Byte length of span. */ public function __construct( int $start, int $length ) { $this->start = $start; $this->length = $length; } }
Name
Size
Modify
Permissions
Actions
class-wp-html-active-formatting-elements.php
7.1 kb
2024-07-22 22:24:16
644
U
E
O
D
class-wp-html-attribute-token.php
2.7 kb
2023-12-10 13:19:28
644
U
E
O
D
class-wp-html-decoder.php
16.3 kb
2024-09-02 20:55:14
644
U
E
O
D
class-wp-html-doctype-info.php
24.8 kb
2025-08-19 15:08:32
644
U
E
O
D
class-wp-html-open-elements.php
22 kb
2025-09-28 21:56:28
644
U
E
O
D
class-wp-html-processor-state.php
11.1 kb
2024-11-27 09:54:18
644
U
E
O
D
class-wp-html-processor.php
208.4 kb
2025-10-09 23:38:32
644
U
E
O
D
class-wp-html-span.php
1.1 kb
2024-07-19 23:44:16
644
U
E
O
D
class-wp-html-stack-event.php
1.6 kb
2024-07-19 23:44:16
644
U
E
O
D
class-wp-html-tag-processor.php
147.7 kb
2026-03-10 13:57:28
644
U
E
O
D
class-wp-html-text-replacement.php
1.4 kb
2024-07-19 23:44:16
644
U
E
O
D
class-wp-html-unsupported-exception.php
3.5 kb
2024-07-12 22:29:14
644
U
E
O
D
html5-named-character-references.php
78.3 kb
2024-05-23 19:56:08
644
U
E
O
D