PHP 8.2.30
Preview: class-wp-html-span.php Size: 1.07 KB
/home/byroehnu/geniuskidsacademy.org/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;
	}
}

Directory Contents

Dirs: 0 × Files: 14

Name Size Perms Modified Actions
7.09 KB lrw-r--r-- 2024-07-23 02:24:16
Edit Download
2.71 KB lrw-r--r-- 2023-12-10 18:19:28
Edit Download
16.30 KB lrw-r--r-- 2024-09-03 00:55:14
Edit Download
24.79 KB lrw-r--r-- 2025-08-19 19:08:32
Edit Download
21.95 KB lrw-r--r-- 2025-09-29 01:56:28
Edit Download
11.07 KB lrw-r--r-- 2024-11-27 14:54:18
Edit Download
208.44 KB lrw-r--r-- 2025-10-10 03:38:32
Edit Download
1.07 KB lrw-r--r-- 2024-07-20 03:44:16
Edit Download
1.60 KB lrw-r--r-- 2024-07-20 03:44:16
Edit Download
147.75 KB lrw-r--r-- 2026-03-11 10:16:08
Edit Download
1.38 KB lrw-r--r-- 2024-07-20 03:44:16
Edit Download
3.33 KB lrw-r--r-- 2025-09-29 01:56:28
Edit Download
3.52 KB lrw-r--r-- 2024-07-13 02:29:14
Edit Download
78.28 KB lrw-r--r-- 2024-05-23 23:56:08
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).