Changeset 61005
- Timestamp:
- 10/21/2025 04:20:53 AM (4 weeks ago)
- File:
-
- 1 edited
- trunk/src/wp-includes/compat-utf8.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/compat-utf8.php
r61004 r61005 37 37 * @access private 38 38 * 39 * @param string $bytes UTF-8 encoded string which might include invalid spans of bytes.40 * @param int $at Where to start scanning.41 * @param int $invalid_length Will be set to how many bytes are to be ignored after `$at`.42 * @param int|null $max_bytes Stop scanning after this many bytes have been seen.43 * @param int|null $max_code_points Stop scanning after this many code points have been seen.44 * @param bool $has_noncharacters Set to indicate if scanned string contained noncharacters.39 * @param string $bytes UTF-8 encoded string which might include invalid spans of bytes. 40 * @param int $at Where to start scanning. 41 * @param int $invalid_length Will be set to how many bytes are to be ignored after `$at`. 42 * @param int|null $max_bytes Stop scanning after this many bytes have been seen. 43 * @param int|null $max_code_points Stop scanning after this many code points have been seen. 44 * @param bool|null $has_noncharacters Set to indicate if scanned string contained noncharacters. 45 45 * @return int How many code points were successfully scanned. 46 46 */
Note: See TracChangeset for help on using the changeset viewer.