[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Main WordPress Formatting API. 4 * 5 * Handles many functions for formatting output. 6 * 7 * @package WordPress 8 */ 9 10 /** 11 * Replaces common plain text characters with formatted entities. 12 * 13 * Returns given text with transformations of quotes into smart quotes, apostrophes, 14 * dashes, ellipses, the trademark symbol, and the multiplication symbol. 15 * 16 * As an example, 17 * 18 * 'cause today's effort makes it worth tomorrow's "holiday" ... 19 * 20 * Becomes: 21 * 22 * ’cause today’s effort makes it worth tomorrow’s “holiday” … 23 * 24 * Code within certain HTML blocks are skipped. 25 * 26 * Do not use this function before the {@see 'init'} action hook; everything will break. 27 * 28 * @since 0.71 29 * 30 * @global array $wp_cockneyreplace Array of formatted entities for certain common phrases. 31 * @global array $shortcode_tags 32 * 33 * @param string $text The text to be formatted. 34 * @param bool $reset Set to true for unit testing. Translated patterns will reset. 35 * @return string The string replaced with HTML entities. 36 */ 37 function wptexturize( $text, $reset = false ) { 38 global $wp_cockneyreplace, $shortcode_tags; 39 static $static_characters = null, 40 $static_replacements = null, 41 $dynamic_characters = null, 42 $dynamic_replacements = null, 43 $default_no_texturize_tags = null, 44 $default_no_texturize_shortcodes = null, 45 $run_texturize = true, 46 $apos = null, 47 $prime = null, 48 $double_prime = null, 49 $opening_quote = null, 50 $closing_quote = null, 51 $opening_single_quote = null, 52 $closing_single_quote = null, 53 $open_q_flag = '<!--oq-->', 54 $open_sq_flag = '<!--osq-->', 55 $apos_flag = '<!--apos-->'; 56 57 // If there's nothing to do, just stop. 58 if ( empty( $text ) || false === $run_texturize ) { 59 return $text; 60 } 61 62 // Set up static variables. Run once only. 63 if ( $reset || ! isset( $static_characters ) ) { 64 /** 65 * Filters whether to skip running wptexturize(). 66 * 67 * Returning false from the filter will effectively short-circuit wptexturize() 68 * and return the original text passed to the function instead. 69 * 70 * The filter runs only once, the first time wptexturize() is called. 71 * 72 * @since 4.0.0 73 * 74 * @see wptexturize() 75 * 76 * @param bool $run_texturize Whether to short-circuit wptexturize(). 77 */ 78 $run_texturize = apply_filters( 'run_wptexturize', $run_texturize ); 79 if ( false === $run_texturize ) { 80 return $text; 81 } 82 83 /* translators: Opening curly double quote. */ 84 $opening_quote = _x( '“', 'opening curly double quote' ); 85 /* translators: Closing curly double quote. */ 86 $closing_quote = _x( '”', 'closing curly double quote' ); 87 88 /* translators: Apostrophe, for example in 'cause or can't. */ 89 $apos = _x( '’', 'apostrophe' ); 90 91 /* translators: Prime, for example in 9' (nine feet). */ 92 $prime = _x( '′', 'prime' ); 93 /* translators: Double prime, for example in 9" (nine inches). */ 94 $double_prime = _x( '″', 'double prime' ); 95 96 /* translators: Opening curly single quote. */ 97 $opening_single_quote = _x( '‘', 'opening curly single quote' ); 98 /* translators: Closing curly single quote. */ 99 $closing_single_quote = _x( '’', 'closing curly single quote' ); 100 101 /* translators: En dash. */ 102 $en_dash = _x( '–', 'en dash' ); 103 /* translators: Em dash. */ 104 $em_dash = _x( '—', 'em dash' ); 105 106 $default_no_texturize_tags = array( 'pre', 'code', 'kbd', 'style', 'script', 'tt' ); 107 $default_no_texturize_shortcodes = array( 'code' ); 108 109 // If a plugin has provided an autocorrect array, use it. 110 if ( isset( $wp_cockneyreplace ) ) { 111 $cockney = array_keys( $wp_cockneyreplace ); 112 $cockneyreplace = array_values( $wp_cockneyreplace ); 113 } else { 114 /* 115 * translators: This is a comma-separated list of words that defy the syntax of quotations in normal use, 116 * for example... 'We do not have enough words yet'... is a typical quoted phrase. But when we write 117 * lines of code 'til we have enough of 'em, then we need to insert apostrophes instead of quotes. 118 */ 119 $cockney = explode( 120 ',', 121 _x( 122 "'tain't,'twere,'twas,'tis,'twill,'til,'bout,'nuff,'round,'cause,'em", 123 'Comma-separated list of words to texturize in your language' 124 ) 125 ); 126 127 $cockneyreplace = explode( 128 ',', 129 _x( 130 '’tain’t,’twere,’twas,’tis,’twill,’til,’bout,’nuff,’round,’cause,’em', 131 'Comma-separated list of replacement words in your language' 132 ) 133 ); 134 } 135 136 $static_characters = array_merge( array( '...', '``', '\'\'', ' (tm)' ), $cockney ); 137 $static_replacements = array_merge( array( '…', $opening_quote, $closing_quote, ' ™' ), $cockneyreplace ); 138 139 /* 140 * Pattern-based replacements of characters. 141 * Sort the remaining patterns into several arrays for performance tuning. 142 */ 143 $dynamic_characters = array( 144 'apos' => array(), 145 'quote' => array(), 146 'dash' => array(), 147 ); 148 $dynamic_replacements = array( 149 'apos' => array(), 150 'quote' => array(), 151 'dash' => array(), 152 ); 153 $dynamic = array(); 154 $spaces = wp_spaces_regexp(); 155 156 // '99' and '99" are ambiguous among other patterns; assume it's an abbreviated year at the end of a quotation. 157 if ( "'" !== $apos || "'" !== $closing_single_quote ) { 158 $dynamic[ '/\'(\d\d)\'(?=\Z|[.,:;!?)}\-\]]|>|' . $spaces . ')/' ] = $apos_flag . '$1' . $closing_single_quote; 159 } 160 if ( "'" !== $apos || '"' !== $closing_quote ) { 161 $dynamic[ '/\'(\d\d)"(?=\Z|[.,:;!?)}\-\]]|>|' . $spaces . ')/' ] = $apos_flag . '$1' . $closing_quote; 162 } 163 164 // '99 '99s '99's (apostrophe) But never '9 or '99% or '999 or '99.0. 165 if ( "'" !== $apos ) { 166 $dynamic['/\'(?=\d\d(?:\Z|(?![%\d]|[.,]\d)))/'] = $apos_flag; 167 } 168 169 // Quoted numbers like '0.42'. 170 if ( "'" !== $opening_single_quote && "'" !== $closing_single_quote ) { 171 $dynamic[ '/(?<=\A|' . $spaces . ')\'(\d[.,\d]*)\'/' ] = $open_sq_flag . '$1' . $closing_single_quote; 172 } 173 174 // Single quote at start, or preceded by (, {, <, [, ", -, or spaces. 175 if ( "'" !== $opening_single_quote ) { 176 $dynamic[ '/(?<=\A|[([{"\-]|<|' . $spaces . ')\'/' ] = $open_sq_flag; 177 } 178 179 // Apostrophe in a word. No spaces, double apostrophes, or other punctuation. 180 if ( "'" !== $apos ) { 181 $dynamic[ '/(?<!' . $spaces . ')\'(?!\Z|[.,:;!?"\'(){}[\]\-]|&[lg]t;|' . $spaces . ')/' ] = $apos_flag; 182 } 183 184 $dynamic_characters['apos'] = array_keys( $dynamic ); 185 $dynamic_replacements['apos'] = array_values( $dynamic ); 186 $dynamic = array(); 187 188 // Quoted numbers like "42". 189 if ( '"' !== $opening_quote && '"' !== $closing_quote ) { 190 $dynamic[ '/(?<=\A|' . $spaces . ')"(\d[.,\d]*)"/' ] = $open_q_flag . '$1' . $closing_quote; 191 } 192 193 // Double quote at start, or preceded by (, {, <, [, -, or spaces, and not followed by spaces. 194 if ( '"' !== $opening_quote ) { 195 $dynamic[ '/(?<=\A|[([{\-]|<|' . $spaces . ')"(?!' . $spaces . ')/' ] = $open_q_flag; 196 } 197 198 $dynamic_characters['quote'] = array_keys( $dynamic ); 199 $dynamic_replacements['quote'] = array_values( $dynamic ); 200 $dynamic = array(); 201 202 // Dashes and spaces. 203 $dynamic['/---/'] = $em_dash; 204 $dynamic[ '/(?<=^|' . $spaces . ')--(?=$|' . $spaces . ')/' ] = $em_dash; 205 $dynamic['/(?<!xn)--/'] = $en_dash; 206 $dynamic[ '/(?<=^|' . $spaces . ')-(?=$|' . $spaces . ')/' ] = $en_dash; 207 208 $dynamic_characters['dash'] = array_keys( $dynamic ); 209 $dynamic_replacements['dash'] = array_values( $dynamic ); 210 } 211 212 // Must do this every time in case plugins use these filters in a context sensitive manner. 213 /** 214 * Filters the list of HTML elements not to texturize. 215 * 216 * @since 2.8.0 217 * 218 * @param string[] $default_no_texturize_tags An array of HTML element names. 219 */ 220 $no_texturize_tags = apply_filters( 'no_texturize_tags', $default_no_texturize_tags ); 221 /** 222 * Filters the list of shortcodes not to texturize. 223 * 224 * @since 2.8.0 225 * 226 * @param string[] $default_no_texturize_shortcodes An array of shortcode names. 227 */ 228 $no_texturize_shortcodes = apply_filters( 'no_texturize_shortcodes', $default_no_texturize_shortcodes ); 229 230 $no_texturize_tags_stack = array(); 231 $no_texturize_shortcodes_stack = array(); 232 233 // Look for shortcodes and HTML elements. 234 235 preg_match_all( '@\[/?([^<>&/\[\]\x00-\x20=]++)@', $text, $matches ); 236 $tagnames = array_intersect( array_keys( $shortcode_tags ), $matches[1] ); 237 $found_shortcodes = ! empty( $tagnames ); 238 $shortcode_regex = $found_shortcodes ? _get_wptexturize_shortcode_regex( $tagnames ) : ''; 239 $regex = _get_wptexturize_split_regex( $shortcode_regex ); 240 241 $textarr = preg_split( $regex, $text, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY ); 242 243 foreach ( $textarr as &$curl ) { 244 // Only call _wptexturize_pushpop_element if $curl is a delimiter. 245 $first = $curl[0]; 246 if ( '<' === $first ) { 247 if ( str_starts_with( $curl, '<!--' ) ) { 248 // This is an HTML comment delimiter. 249 continue; 250 } else { 251 // This is an HTML element delimiter. 252 253 // Replace each & with & unless it already looks like an entity. 254 $curl = preg_replace( '/&(?!#(?:\d+|x[a-f0-9]+);|[a-z1-4]{1,8};)/i', '&', $curl ); 255 256 _wptexturize_pushpop_element( $curl, $no_texturize_tags_stack, $no_texturize_tags ); 257 } 258 } elseif ( '' === trim( $curl ) ) { 259 // This is a newline between delimiters. Performance improves when we check this. 260 continue; 261 262 } elseif ( '[' === $first && $found_shortcodes && 1 === preg_match( '/^' . $shortcode_regex . '$/', $curl ) ) { 263 // This is a shortcode delimiter. 264 265 if ( ! str_starts_with( $curl, '[[' ) && ! str_ends_with( $curl, ']]' ) ) { 266 // Looks like a normal shortcode. 267 _wptexturize_pushpop_element( $curl, $no_texturize_shortcodes_stack, $no_texturize_shortcodes ); 268 } else { 269 // Looks like an escaped shortcode. 270 continue; 271 } 272 } elseif ( empty( $no_texturize_shortcodes_stack ) && empty( $no_texturize_tags_stack ) ) { 273 // This is neither a delimiter, nor is this content inside of no_texturize pairs. Do texturize. 274 275 $curl = str_replace( $static_characters, $static_replacements, $curl ); 276 277 if ( str_contains( $curl, "'" ) ) { 278 $curl = preg_replace( $dynamic_characters['apos'], $dynamic_replacements['apos'], $curl ); 279 $curl = wptexturize_primes( $curl, "'", $prime, $open_sq_flag, $closing_single_quote ); 280 $curl = str_replace( $apos_flag, $apos, $curl ); 281 $curl = str_replace( $open_sq_flag, $opening_single_quote, $curl ); 282 } 283 if ( str_contains( $curl, '"' ) ) { 284 $curl = preg_replace( $dynamic_characters['quote'], $dynamic_replacements['quote'], $curl ); 285 $curl = wptexturize_primes( $curl, '"', $double_prime, $open_q_flag, $closing_quote ); 286 $curl = str_replace( $open_q_flag, $opening_quote, $curl ); 287 } 288 if ( str_contains( $curl, '-' ) ) { 289 $curl = preg_replace( $dynamic_characters['dash'], $dynamic_replacements['dash'], $curl ); 290 } 291 292 // 9x9 (times), but never 0x9999. 293 if ( 1 === preg_match( '/(?<=\d)x\d/', $curl ) ) { 294 // Searching for a digit is 10 times more expensive than for the x, so we avoid doing this one! 295 $curl = preg_replace( '/\b(\d(?(?<=0)[\d\.,]+|[\d\.,]*))x(\d[\d\.,]*)\b/', '$1×$2', $curl ); 296 } 297 298 // Replace each & with & unless it already looks like an entity. 299 $curl = preg_replace( '/&(?!#(?:\d+|x[a-f0-9]+);|[a-z1-4]{1,8};)/i', '&', $curl ); 300 } 301 } 302 303 return implode( '', $textarr ); 304 } 305 306 /** 307 * Implements a logic tree to determine whether or not "7'." represents seven feet, 308 * then converts the special char into either a prime char or a closing quote char. 309 * 310 * @since 4.3.0 311 * 312 * @param string $haystack The plain text to be searched. 313 * @param string $needle The character to search for such as ' or ". 314 * @param string $prime The prime char to use for replacement. 315 * @param string $open_quote The opening quote char. Opening quote replacement must be 316 * accomplished already. 317 * @param string $close_quote The closing quote char to use for replacement. 318 * @return string The $haystack value after primes and quotes replacements. 319 */ 320 function wptexturize_primes( $haystack, $needle, $prime, $open_quote, $close_quote ) { 321 $spaces = wp_spaces_regexp(); 322 $flag = '<!--wp-prime-or-quote-->'; 323 $quote_pattern = "/$needle(?=\\Z|[.,:;!?)}\\-\\]]|>|" . $spaces . ')/'; 324 $prime_pattern = "/(?<=\\d)$needle/"; 325 $flag_after_digit = "/(?<=\\d)$flag/"; 326 $flag_no_digit = "/(?<!\\d)$flag/"; 327 328 $sentences = explode( $open_quote, $haystack ); 329 330 foreach ( $sentences as $key => &$sentence ) { 331 if ( ! str_contains( $sentence, $needle ) ) { 332 continue; 333 } elseif ( 0 !== $key && 0 === substr_count( $sentence, $close_quote ) ) { 334 $sentence = preg_replace( $quote_pattern, $flag, $sentence, -1, $count ); 335 if ( $count > 1 ) { 336 // This sentence appears to have multiple closing quotes. Attempt Vulcan logic. 337 $sentence = preg_replace( $flag_no_digit, $close_quote, $sentence, -1, $count2 ); 338 if ( 0 === $count2 ) { 339 // Try looking for a quote followed by a period. 340 $count2 = substr_count( $sentence, "$flag." ); 341 if ( $count2 > 0 ) { 342 // Assume the rightmost quote-period match is the end of quotation. 343 $pos = strrpos( $sentence, "$flag." ); 344 } else { 345 /* 346 * When all else fails, make the rightmost candidate a closing quote. 347 * This is most likely to be problematic in the context of bug #18549. 348 */ 349 $pos = strrpos( $sentence, $flag ); 350 } 351 $sentence = substr_replace( $sentence, $close_quote, $pos, strlen( $flag ) ); 352 } 353 // Use conventional replacement on any remaining primes and quotes. 354 $sentence = preg_replace( $prime_pattern, $prime, $sentence ); 355 $sentence = preg_replace( $flag_after_digit, $prime, $sentence ); 356 $sentence = str_replace( $flag, $close_quote, $sentence ); 357 } elseif ( 1 === $count ) { 358 // Found only one closing quote candidate, so give it priority over primes. 359 $sentence = str_replace( $flag, $close_quote, $sentence ); 360 $sentence = preg_replace( $prime_pattern, $prime, $sentence ); 361 } else { 362 // No closing quotes found. Just run primes pattern. 363 $sentence = preg_replace( $prime_pattern, $prime, $sentence ); 364 } 365 } else { 366 $sentence = preg_replace( $prime_pattern, $prime, $sentence ); 367 $sentence = preg_replace( $quote_pattern, $close_quote, $sentence ); 368 } 369 if ( '"' === $needle && str_contains( $sentence, '"' ) ) { 370 $sentence = str_replace( '"', $close_quote, $sentence ); 371 } 372 } 373 374 return implode( $open_quote, $sentences ); 375 } 376 377 /** 378 * Searches for disabled element tags. Pushes element to stack on tag open 379 * and pops on tag close. 380 * 381 * Assumes first char of `$text` is tag opening and last char is tag closing. 382 * Assumes second char of `$text` is optionally `/` to indicate closing as in `</html>`. 383 * 384 * @since 2.9.0 385 * @access private 386 * 387 * @param string $text Text to check. Must be a tag like `<html>` or `[shortcode]`. 388 * @param string[] $stack Array of open tag elements. 389 * @param string[] $disabled_elements Array of tag names to match against. Spaces are not allowed in tag names. 390 */ 391 function _wptexturize_pushpop_element( $text, &$stack, $disabled_elements ) { 392 // Is it an opening tag or closing tag? 393 if ( isset( $text[1] ) && '/' !== $text[1] ) { 394 $opening_tag = true; 395 $name_offset = 1; 396 } elseif ( 0 === count( $stack ) ) { 397 // Stack is empty. Just stop. 398 return; 399 } else { 400 $opening_tag = false; 401 $name_offset = 2; 402 } 403 404 // Parse out the tag name. 405 $space = strpos( $text, ' ' ); 406 if ( false === $space ) { 407 $space = -1; 408 } else { 409 $space -= $name_offset; 410 } 411 $tag = substr( $text, $name_offset, $space ); 412 413 // Handle disabled tags. 414 if ( in_array( $tag, $disabled_elements, true ) ) { 415 if ( $opening_tag ) { 416 /* 417 * This disables texturize until we find a closing tag of our type 418 * (e.g. <pre>) even if there was invalid nesting before that. 419 * 420 * Example: in the case <pre>sadsadasd</code>"baba"</pre> 421 * "baba" won't be texturized. 422 */ 423 424 array_push( $stack, $tag ); 425 } elseif ( end( $stack ) === $tag ) { 426 array_pop( $stack ); 427 } 428 } 429 } 430 431 /** 432 * Replaces double line breaks with paragraph elements. 433 * 434 * A group of regex replaces used to identify text formatted with newlines and 435 * replace double line breaks with HTML paragraph tags. The remaining line breaks 436 * after conversion become `<br />` tags, unless `$br` is set to '0' or 'false'. 437 * 438 * @since 0.71 439 * 440 * @param string $text The text which has to be formatted. 441 * @param bool $br Optional. If set, this will convert all remaining line breaks 442 * after paragraphing. Line breaks within `<script>`, `<style>`, 443 * and `<svg>` tags are not affected. Default true. 444 * @return string Text which has been converted into correct paragraph tags. 445 */ 446 function wpautop( $text, $br = true ) { 447 $pre_tags = array(); 448 449 if ( trim( $text ) === '' ) { 450 return ''; 451 } 452 453 // Just to make things a little easier, pad the end. 454 $text = $text . "\n"; 455 456 /* 457 * Pre tags shouldn't be touched by autop. 458 * Replace pre tags with placeholders and bring them back after autop. 459 */ 460 if ( str_contains( $text, '<pre' ) ) { 461 $text_parts = explode( '</pre>', $text ); 462 $last_part = array_pop( $text_parts ); 463 $text = ''; 464 $i = 0; 465 466 foreach ( $text_parts as $text_part ) { 467 $start = strpos( $text_part, '<pre' ); 468 469 // Malformed HTML? 470 if ( false === $start ) { 471 $text .= $text_part; 472 continue; 473 } 474 475 $name = "<pre wp-pre-tag-$i></pre>"; 476 $pre_tags[ $name ] = substr( $text_part, $start ) . '</pre>'; 477 478 $text .= substr( $text_part, 0, $start ) . $name; 479 ++$i; 480 } 481 482 $text .= $last_part; 483 } 484 // Change multiple <br>'s into two line breaks, which will turn into paragraphs. 485 $text = preg_replace( '|<br\s*/?>\s*<br\s*/?>|', "\n\n", $text ); 486 487 $allblocks = '(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|form|map|area|blockquote|address|style|p|h[1-6]|hr|fieldset|legend|section|article|aside|hgroup|header|footer|nav|figure|figcaption|details|menu|summary)'; 488 489 // Add a double line break above block-level opening tags. 490 $text = preg_replace( '!(<' . $allblocks . '[\s/>])!', "\n\n$1", $text ); 491 492 // Add a double line break below block-level closing tags. 493 $text = preg_replace( '!(</' . $allblocks . '>)!', "$1\n\n", $text ); 494 495 // Add a double line break after hr tags, which are self closing. 496 $text = preg_replace( '!(<hr\s*?/?>)!', "$1\n\n", $text ); 497 498 // Standardize newline characters to "\n". 499 $text = str_replace( array( "\r\n", "\r" ), "\n", $text ); 500 501 // Find newlines in all elements and add placeholders. 502 $text = wp_replace_in_html_tags( $text, array( "\n" => ' <!-- wpnl --> ' ) ); 503 504 // Collapse line breaks before and after <option> elements so they don't get autop'd. 505 if ( str_contains( $text, '<option' ) ) { 506 $text = preg_replace( '|\s*<option|', '<option', $text ); 507 $text = preg_replace( '|</option>\s*|', '</option>', $text ); 508 } 509 510 /* 511 * Collapse line breaks inside <object> elements, before <param> and <embed> elements 512 * so they don't get autop'd. 513 */ 514 if ( str_contains( $text, '</object>' ) ) { 515 $text = preg_replace( '|(<object[^>]*>)\s*|', '$1', $text ); 516 $text = preg_replace( '|\s*</object>|', '</object>', $text ); 517 $text = preg_replace( '%\s*(</?(?:param|embed)[^>]*>)\s*%', '$1', $text ); 518 } 519 520 /* 521 * Collapse line breaks inside <audio> and <video> elements, 522 * before and after <source> and <track> elements. 523 */ 524 if ( str_contains( $text, '<source' ) || str_contains( $text, '<track' ) ) { 525 $text = preg_replace( '%([<\[](?:audio|video)[^>\]]*[>\]])\s*%', '$1', $text ); 526 $text = preg_replace( '%\s*([<\[]/(?:audio|video)[>\]])%', '$1', $text ); 527 $text = preg_replace( '%\s*(<(?:source|track)[^>]*>)\s*%', '$1', $text ); 528 } 529 530 // Collapse line breaks before and after <figcaption> elements. 531 if ( str_contains( $text, '<figcaption' ) ) { 532 $text = preg_replace( '|\s*(<figcaption[^>]*>)|', '$1', $text ); 533 $text = preg_replace( '|</figcaption>\s*|', '</figcaption>', $text ); 534 } 535 536 // Remove more than two contiguous line breaks. 537 $text = preg_replace( "/\n\n+/", "\n\n", $text ); 538 539 // Split up the contents into an array of strings, separated by double line breaks. 540 $paragraphs = preg_split( '/\n\s*\n/', $text, -1, PREG_SPLIT_NO_EMPTY ); 541 542 // Reset $text prior to rebuilding. 543 $text = ''; 544 545 // Rebuild the content as a string, wrapping every bit with a <p>. 546 foreach ( $paragraphs as $paragraph ) { 547 $text .= '<p>' . trim( $paragraph, "\n" ) . "</p>\n"; 548 } 549 550 // Under certain strange conditions it could create a P of entirely whitespace. 551 $text = preg_replace( '|<p>\s*</p>|', '', $text ); 552 553 // Add a closing <p> inside <div>, <address>, or <form> tag if missing. 554 $text = preg_replace( '!<p>([^<]+)</(div|address|form)>!', '<p>$1</p></$2>', $text ); 555 556 // If an opening or closing block element tag is wrapped in a <p>, unwrap it. 557 $text = preg_replace( '!<p>\s*(</?' . $allblocks . '[^>]*>)\s*</p>!', '$1', $text ); 558 559 // In some cases <li> may get wrapped in <p>, fix them. 560 $text = preg_replace( '|<p>(<li.+?)</p>|', '$1', $text ); 561 562 // If a <blockquote> is wrapped with a <p>, move it inside the <blockquote>. 563 $text = preg_replace( '|<p><blockquote([^>]*)>|i', '<blockquote$1><p>', $text ); 564 $text = str_replace( '</blockquote></p>', '</p></blockquote>', $text ); 565 566 // If an opening or closing block element tag is preceded by an opening <p> tag, remove it. 567 $text = preg_replace( '!<p>\s*(</?' . $allblocks . '[^>]*>)!', '$1', $text ); 568 569 // If an opening or closing block element tag is followed by a closing <p> tag, remove it. 570 $text = preg_replace( '!(</?' . $allblocks . '[^>]*>)\s*</p>!', '$1', $text ); 571 572 // Optionally insert line breaks. 573 if ( $br ) { 574 // Replace newlines that shouldn't be touched with a placeholder. 575 $text = preg_replace_callback( '/<(script|style|svg|math).*?<\/\\1>/s', '_autop_newline_preservation_helper', $text ); 576 577 // Normalize <br>. 578 $text = str_replace( array( '<br>', '<br/>' ), '<br />', $text ); 579 580 // Replace any new line characters that aren't preceded by a <br /> with a <br />. 581 $text = preg_replace( '|(?<!<br />)\s*\n|', "<br />\n", $text ); 582 583 // Replace newline placeholders with newlines. 584 $text = str_replace( '<WPPreserveNewline />', "\n", $text ); 585 } 586 587 // If a <br /> tag is after an opening or closing block tag, remove it. 588 $text = preg_replace( '!(</?' . $allblocks . '[^>]*>)\s*<br />!', '$1', $text ); 589 590 // If a <br /> tag is before a subset of opening or closing block tags, remove it. 591 $text = preg_replace( '!<br />(\s*</?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)[^>]*>)!', '$1', $text ); 592 $text = preg_replace( "|\n</p>$|", '</p>', $text ); 593 594 // Replace placeholder <pre> tags with their original content. 595 if ( ! empty( $pre_tags ) ) { 596 $text = str_replace( array_keys( $pre_tags ), array_values( $pre_tags ), $text ); 597 } 598 599 // Restore newlines in all elements. 600 if ( str_contains( $text, '<!-- wpnl -->' ) ) { 601 $text = str_replace( array( ' <!-- wpnl --> ', '<!-- wpnl -->' ), "\n", $text ); 602 } 603 604 return $text; 605 } 606 607 /** 608 * Separates HTML elements and comments from the text. 609 * 610 * @since 4.2.4 611 * 612 * @param string $input The text which has to be formatted. 613 * @return string[] Array of the formatted text. 614 */ 615 function wp_html_split( $input ) { 616 return preg_split( get_html_split_regex(), $input, -1, PREG_SPLIT_DELIM_CAPTURE ); 617 } 618 619 /** 620 * Retrieves the regular expression for an HTML element. 621 * 622 * @since 4.4.0 623 * 624 * @return string The regular expression. 625 */ 626 function get_html_split_regex() { 627 static $regex; 628 629 if ( ! isset( $regex ) ) { 630 // phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound -- don't remove regex indentation 631 $comments = 632 '!' // Start of comment, after the <. 633 . '(?:' // Unroll the loop: Consume everything until --> is found. 634 . '-(?!->)' // Dash not followed by end of comment. 635 . '[^\-]*+' // Consume non-dashes. 636 . ')*+' // Loop possessively. 637 . '(?:-->)?'; // End of comment. If not found, match all input. 638 639 $cdata = 640 '!\[CDATA\[' // Start of comment, after the <. 641 . '[^\]]*+' // Consume non-]. 642 . '(?:' // Unroll the loop: Consume everything until ]]> is found. 643 . '](?!]>)' // One ] not followed by end of comment. 644 . '[^\]]*+' // Consume non-]. 645 . ')*+' // Loop possessively. 646 . '(?:]]>)?'; // End of comment. If not found, match all input. 647 648 $escaped = 649 '(?=' // Is the element escaped? 650 . '!--' 651 . '|' 652 . '!\[CDATA\[' 653 . ')' 654 . '(?(?=!-)' // If yes, which type? 655 . $comments 656 . '|' 657 . $cdata 658 . ')'; 659 660 $regex = 661 '/(' // Capture the entire match. 662 . '<' // Find start of element. 663 . '(?' // Conditional expression follows. 664 . $escaped // Find end of escaped element. 665 . '|' // ...else... 666 . '[^>]*>?' // Find end of normal element. 667 . ')' 668 . ')/'; 669 // phpcs:enable 670 } 671 672 return $regex; 673 } 674 675 /** 676 * Retrieves the combined regular expression for HTML and shortcodes. 677 * 678 * @access private 679 * @ignore 680 * @internal This function will be removed in 4.5.0 per Shortcode API Roadmap. 681 * @since 4.4.0 682 * 683 * @param string $shortcode_regex Optional. The result from _get_wptexturize_shortcode_regex(). 684 * @return string The regular expression. 685 */ 686 function _get_wptexturize_split_regex( $shortcode_regex = '' ) { 687 static $html_regex; 688 689 if ( ! isset( $html_regex ) ) { 690 // phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound -- don't remove regex indentation 691 $comment_regex = 692 '!' // Start of comment, after the <. 693 . '(?:' // Unroll the loop: Consume everything until --> is found. 694 . '-(?!->)' // Dash not followed by end of comment. 695 . '[^\-]*+' // Consume non-dashes. 696 . ')*+' // Loop possessively. 697 . '(?:-->)?'; // End of comment. If not found, match all input. 698 699 $html_regex = // Needs replaced with wp_html_split() per Shortcode API Roadmap. 700 '<' // Find start of element. 701 . '(?(?=!--)' // Is this a comment? 702 . $comment_regex // Find end of comment. 703 . '|' 704 . '[^>]*>?' // Find end of element. If not found, match all input. 705 . ')'; 706 // phpcs:enable 707 } 708 709 if ( empty( $shortcode_regex ) ) { 710 $regex = '/(' . $html_regex . ')/'; 711 } else { 712 $regex = '/(' . $html_regex . '|' . $shortcode_regex . ')/'; 713 } 714 715 return $regex; 716 } 717 718 /** 719 * Retrieves the regular expression for shortcodes. 720 * 721 * @access private 722 * @ignore 723 * @since 4.4.0 724 * 725 * @param string[] $tagnames Array of shortcodes to find. 726 * @return string The regular expression. 727 */ 728 function _get_wptexturize_shortcode_regex( $tagnames ) { 729 $tagregexp = implode( '|', array_map( 'preg_quote', $tagnames ) ); 730 $tagregexp = "(?:$tagregexp)(?=[\\s\\]\\/])"; // Excerpt of get_shortcode_regex(). 731 // phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound -- don't remove regex indentation 732 $regex = 733 '\[' // Find start of shortcode. 734 . '[\/\[]?' // Shortcodes may begin with [/ or [[. 735 . $tagregexp // Only match registered shortcodes, because performance. 736 . '(?:' 737 . '[^\[\]<>]+' // Shortcodes do not contain other shortcodes. Quantifier critical. 738 . '|' 739 . '<[^\[\]>]*>' // HTML elements permitted. Prevents matching ] before >. 740 . ')*+' // Possessive critical. 741 . '\]' // Find end of shortcode. 742 . '\]?'; // Shortcodes may end with ]]. 743 // phpcs:enable 744 745 return $regex; 746 } 747 748 /** 749 * Replaces characters or phrases within HTML elements only. 750 * 751 * @since 4.2.3 752 * 753 * @param string $haystack The text which has to be formatted. 754 * @param array $replace_pairs In the form array('from' => 'to', ...). 755 * @return string The formatted text. 756 */ 757 function wp_replace_in_html_tags( $haystack, $replace_pairs ) { 758 // Find all elements. 759 $textarr = wp_html_split( $haystack ); 760 $changed = false; 761 762 // Optimize when searching for one item. 763 if ( 1 === count( $replace_pairs ) ) { 764 // Extract $needle and $replace. 765 $needle = array_key_first( $replace_pairs ); 766 $replace = $replace_pairs[ $needle ]; 767 768 // Loop through delimiters (elements) only. 769 for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { 770 if ( str_contains( $textarr[ $i ], $needle ) ) { 771 $textarr[ $i ] = str_replace( $needle, $replace, $textarr[ $i ] ); 772 $changed = true; 773 } 774 } 775 } else { 776 // Extract all $needles. 777 $needles = array_keys( $replace_pairs ); 778 779 // Loop through delimiters (elements) only. 780 for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { 781 foreach ( $needles as $needle ) { 782 if ( str_contains( $textarr[ $i ], $needle ) ) { 783 $textarr[ $i ] = strtr( $textarr[ $i ], $replace_pairs ); 784 $changed = true; 785 // After one strtr() break out of the foreach loop and look at next element. 786 break; 787 } 788 } 789 } 790 } 791 792 if ( $changed ) { 793 $haystack = implode( $textarr ); 794 } 795 796 return $haystack; 797 } 798 799 /** 800 * Newline preservation help function for wpautop(). 801 * 802 * @since 3.1.0 803 * @access private 804 * 805 * @param array $matches preg_replace_callback matches array 806 * @return string 807 */ 808 function _autop_newline_preservation_helper( $matches ) { 809 return str_replace( "\n", '<WPPreserveNewline />', $matches[0] ); 810 } 811 812 /** 813 * Don't auto-p wrap shortcodes that stand alone. 814 * 815 * Ensures that shortcodes are not wrapped in `<p>...</p>`. 816 * 817 * @since 2.9.0 818 * 819 * @global array $shortcode_tags 820 * 821 * @param string $text The content. 822 * @return string The filtered content. 823 */ 824 function shortcode_unautop( $text ) { 825 global $shortcode_tags; 826 827 if ( empty( $shortcode_tags ) || ! is_array( $shortcode_tags ) ) { 828 return $text; 829 } 830 831 $tagregexp = implode( '|', array_map( 'preg_quote', array_keys( $shortcode_tags ) ) ); 832 $spaces = wp_spaces_regexp(); 833 834 // phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound,Universal.WhiteSpace.PrecisionAlignment.Found -- don't remove regex indentation 835 $pattern = 836 '/' 837 . '<p>' // Opening paragraph. 838 . '(?:' . $spaces . ')*+' // Optional leading whitespace. 839 . '(' // 1: The shortcode. 840 . '\\[' // Opening bracket. 841 . "($tagregexp)" // 2: Shortcode name. 842 . '(?![\\w-])' // Not followed by word character or hyphen. 843 // Unroll the loop: Inside the opening shortcode tag. 844 . '[^\\]\\/]*' // Not a closing bracket or forward slash. 845 . '(?:' 846 . '\\/(?!\\])' // A forward slash not followed by a closing bracket. 847 . '[^\\]\\/]*' // Not a closing bracket or forward slash. 848 . ')*?' 849 . '(?:' 850 . '\\/\\]' // Self closing tag and closing bracket. 851 . '|' 852 . '\\]' // Closing bracket. 853 . '(?:' // Unroll the loop: Optionally, anything between the opening and closing shortcode tags. 854 . '[^\\[]*+' // Not an opening bracket. 855 . '(?:' 856 . '\\[(?!\\/\\2\\])' // An opening bracket not followed by the closing shortcode tag. 857 . '[^\\[]*+' // Not an opening bracket. 858 . ')*+' 859 . '\\[\\/\\2\\]' // Closing shortcode tag. 860 . ')?' 861 . ')' 862 . ')' 863 . '(?:' . $spaces . ')*+' // Optional trailing whitespace. 864 . '<\\/p>' // Closing paragraph. 865 . '/'; 866 // phpcs:enable 867 868 return preg_replace( $pattern, '$1', $text ); 869 } 870 871 /** 872 * Checks to see if a string is utf8 encoded. 873 * 874 * NOTE: This function checks for 5-Byte sequences, UTF8 875 * has Bytes Sequences with a maximum length of 4. 876 * 877 * @author bmorel at ssi dot fr (modified) 878 * @since 1.2.1 879 * @deprecated 6.9.0 Use {@see wp_is_valid_utf8()} instead. 880 * 881 * @param string $str The string to be checked. 882 * @return bool True if $str fits a UTF-8 model, false otherwise. 883 */ 884 function seems_utf8( $str ) { 885 _deprecated_function( __FUNCTION__, '6.9.0', 'wp_is_valid_utf8()' ); 886 887 mbstring_binary_safe_encoding(); 888 $length = strlen( $str ); 889 reset_mbstring_encoding(); 890 891 for ( $i = 0; $i < $length; $i++ ) { 892 $c = ord( $str[ $i ] ); 893 894 if ( $c < 0x80 ) { 895 $n = 0; // 0bbbbbbb 896 } elseif ( ( $c & 0xE0 ) === 0xC0 ) { 897 $n = 1; // 110bbbbb 898 } elseif ( ( $c & 0xF0 ) === 0xE0 ) { 899 $n = 2; // 1110bbbb 900 } elseif ( ( $c & 0xF8 ) === 0xF0 ) { 901 $n = 3; // 11110bbb 902 } elseif ( ( $c & 0xFC ) === 0xF8 ) { 903 $n = 4; // 111110bb 904 } elseif ( ( $c & 0xFE ) === 0xFC ) { 905 $n = 5; // 1111110b 906 } else { 907 return false; // Does not match any model. 908 } 909 910 for ( $j = 0; $j < $n; $j++ ) { // n bytes matching 10bbbbbb follow? 911 if ( ( ++$i === $length ) || ( ( ord( $str[ $i ] ) & 0xC0 ) !== 0x80 ) ) { 912 return false; 913 } 914 } 915 } 916 917 return true; 918 } 919 920 /** 921 * Determines if a given byte string represents a valid UTF-8 encoding. 922 * 923 * Note that it’s unlikely for non-UTF-8 data to validate as UTF-8, but 924 * it is still possible. Many texts are simultaneously valid UTF-8, 925 * valid US-ASCII, and valid ISO-8859-1 (`latin1`). 926 * 927 * Example: 928 * 929 * true === wp_is_valid_utf8( '' ); 930 * true === wp_is_valid_utf8( 'just a test' ); 931 * true === wp_is_valid_utf8( "\xE2\x9C\x8F" ); // Pencil, U+270F. 932 * true === wp_is_valid_utf8( "\u{270F}" ); // Pencil, U+270F. 933 * true === wp_is_valid_utf8( '✏' ); // Pencil, U+270F. 934 * 935 * false === wp_is_valid_utf8( "just \xC0 test" ); // Invalid bytes. 936 * false === wp_is_valid_utf8( "\xE2\x9C" ); // Invalid/incomplete sequences. 937 * false === wp_is_valid_utf8( "\xC1\xBF" ); // Overlong sequences. 938 * false === wp_is_valid_utf8( "\xED\xB0\x80" ); // Surrogate halves. 939 * false === wp_is_valid_utf8( "B\xFCch" ); // ISO-8859-1 high-bytes. 940 * // E.g. The “ü” in ISO-8859-1 is a single byte 0xFC, 941 * // but in UTF-8 is the two-byte sequence 0xC3 0xBC. 942 * 943 * A “valid” string consists of “well-formed UTF-8 code unit sequence[s],” meaning 944 * that the bytes conform to the UTF-8 encoding scheme, all characters use the minimal 945 * byte sequence required by UTF-8, and that no sequence encodes a UTF-16 surrogate 946 * code point or any character above the representable range. 947 * 948 * @see https://www.unicode.org/versions/Unicode16.0.0/core-spec/chapter-3/#G32860 949 * 950 * @see _wp_is_valid_utf8_fallback 951 * 952 * @since 6.9.0 953 * 954 * @param string $bytes String which might contain text encoded as UTF-8. 955 * @return bool Whether the provided bytes can decode as valid UTF-8. 956 */ 957 function wp_is_valid_utf8( string $bytes ): bool { 958 /* 959 * Since PHP 8.3.0 the UTF-8 validity is cached internally 960 * on string objects, making this a direct property lookup. 961 * 962 * This is to be preferred exclusively once PHP 8.3.0 is 963 * the minimum supported version, because even when the 964 * status isn’t cached, it uses highly-optimized code to 965 * validate the byte stream. 966 */ 967 return function_exists( 'mb_check_encoding' ) 968 ? mb_check_encoding( $bytes, 'UTF-8' ) 969 : _wp_is_valid_utf8_fallback( $bytes ); 970 } 971 972 /** 973 * Converts a number of special characters into their HTML entities. 974 * 975 * Specifically deals with: `&`, `<`, `>`, `"`, and `'`. 976 * 977 * `$quote_style` can be set to ENT_COMPAT to encode `"` to 978 * `"`, or ENT_QUOTES to do both. Default is ENT_NOQUOTES where no quotes are encoded. 979 * 980 * @since 1.2.2 981 * @since 5.5.0 `$quote_style` also accepts `ENT_XML1`. 982 * @access private 983 * 984 * @param string $text The text which is to be encoded. 985 * @param int|string $quote_style Optional. Converts double quotes if set to ENT_COMPAT, 986 * both single and double if set to ENT_QUOTES or none if set to ENT_NOQUOTES. 987 * Converts single and double quotes, as well as converting HTML 988 * named entities (that are not also XML named entities) to their 989 * code points if set to ENT_XML1. Also compatible with old values; 990 * converting single quotes if set to 'single', 991 * double if set to 'double' or both if otherwise set. 992 * Default is ENT_NOQUOTES. 993 * @param false|string $charset Optional. The character encoding of the string. Default false. 994 * @param bool $double_encode Optional. Whether to encode existing HTML entities. Default false. 995 * @return string The encoded text with HTML entities. 996 */ 997 function _wp_specialchars( $text, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) { 998 $text = (string) $text; 999 1000 if ( 0 === strlen( $text ) ) { 1001 return ''; 1002 } 1003 1004 // Don't bother if there are no specialchars - saves some processing. 1005 if ( ! preg_match( '/[&<>"\']/', $text ) ) { 1006 return $text; 1007 } 1008 1009 // Account for the previous behavior of the function when the $quote_style is not an accepted value. 1010 if ( empty( $quote_style ) ) { 1011 $quote_style = ENT_NOQUOTES; 1012 } elseif ( ENT_XML1 === $quote_style ) { 1013 $quote_style = ENT_QUOTES | ENT_XML1; 1014 } elseif ( ! in_array( $quote_style, array( ENT_NOQUOTES, ENT_COMPAT, ENT_QUOTES, 'single', 'double' ), true ) ) { 1015 $quote_style = ENT_QUOTES; 1016 } 1017 1018 $charset = _canonical_charset( $charset ? $charset : get_option( 'blog_charset' ) ); 1019 1020 $_quote_style = $quote_style; 1021 1022 if ( 'double' === $quote_style ) { 1023 $quote_style = ENT_COMPAT; 1024 $_quote_style = ENT_COMPAT; 1025 } elseif ( 'single' === $quote_style ) { 1026 $quote_style = ENT_NOQUOTES; 1027 } 1028 1029 if ( ! $double_encode ) { 1030 /* 1031 * Guarantee every &entity; is valid, convert &garbage; into &garbage; 1032 * This is required for PHP < 5.4.0 because ENT_HTML401 flag is unavailable. 1033 */ 1034 $text = wp_kses_normalize_entities( $text, ( $quote_style & ENT_XML1 ) ? 'xml' : 'html' ); 1035 } 1036 1037 $text = htmlspecialchars( $text, $quote_style, $charset, $double_encode ); 1038 1039 // Back-compat. 1040 if ( 'single' === $_quote_style ) { 1041 $text = str_replace( "'", ''', $text ); 1042 } 1043 1044 return $text; 1045 } 1046 1047 /** 1048 * Converts a number of HTML entities into their special characters. 1049 * 1050 * Specifically deals with: `&`, `<`, `>`, `"`, and `'`. 1051 * 1052 * `$quote_style` can be set to ENT_COMPAT to decode `"` entities, 1053 * or ENT_QUOTES to do both `"` and `'`. Default is ENT_NOQUOTES where no quotes are decoded. 1054 * 1055 * @since 2.8.0 1056 * 1057 * @param string $text The text which is to be decoded. 1058 * @param string|int $quote_style Optional. Converts double quotes if set to ENT_COMPAT, 1059 * both single and double if set to ENT_QUOTES or 1060 * none if set to ENT_NOQUOTES. 1061 * Also compatible with old _wp_specialchars() values; 1062 * converting single quotes if set to 'single', 1063 * double if set to 'double' or both if otherwise set. 1064 * Default is ENT_NOQUOTES. 1065 * @return string The decoded text without HTML entities. 1066 */ 1067 function wp_specialchars_decode( $text, $quote_style = ENT_NOQUOTES ) { 1068 $text = (string) $text; 1069 1070 if ( 0 === strlen( $text ) ) { 1071 return ''; 1072 } 1073 1074 // Don't bother if there are no entities - saves a lot of processing. 1075 if ( ! str_contains( $text, '&' ) ) { 1076 return $text; 1077 } 1078 1079 // Match the previous behavior of _wp_specialchars() when the $quote_style is not an accepted value. 1080 if ( empty( $quote_style ) ) { 1081 $quote_style = ENT_NOQUOTES; 1082 } elseif ( ! in_array( $quote_style, array( 0, 2, 3, 'single', 'double' ), true ) ) { 1083 $quote_style = ENT_QUOTES; 1084 } 1085 1086 // More complete than get_html_translation_table( HTML_SPECIALCHARS ). 1087 $single = array( 1088 ''' => '\'', 1089 ''' => '\'', 1090 ); 1091 $single_preg = array( 1092 '/�*39;/' => ''', 1093 '/�*27;/i' => ''', 1094 ); 1095 $double = array( 1096 '"' => '"', 1097 '"' => '"', 1098 '"' => '"', 1099 ); 1100 $double_preg = array( 1101 '/�*34;/' => '"', 1102 '/�*22;/i' => '"', 1103 ); 1104 $others = array( 1105 '<' => '<', 1106 '<' => '<', 1107 '>' => '>', 1108 '>' => '>', 1109 '&' => '&', 1110 '&' => '&', 1111 '&' => '&', 1112 ); 1113 $others_preg = array( 1114 '/�*60;/' => '<', 1115 '/�*62;/' => '>', 1116 '/�*38;/' => '&', 1117 '/�*26;/i' => '&', 1118 ); 1119 1120 if ( ENT_QUOTES === $quote_style ) { 1121 $translation = array_merge( $single, $double, $others ); 1122 $translation_preg = array_merge( $single_preg, $double_preg, $others_preg ); 1123 } elseif ( ENT_COMPAT === $quote_style || 'double' === $quote_style ) { 1124 $translation = array_merge( $double, $others ); 1125 $translation_preg = array_merge( $double_preg, $others_preg ); 1126 } elseif ( 'single' === $quote_style ) { 1127 $translation = array_merge( $single, $others ); 1128 $translation_preg = array_merge( $single_preg, $others_preg ); 1129 } elseif ( ENT_NOQUOTES === $quote_style ) { 1130 $translation = $others; 1131 $translation_preg = $others_preg; 1132 } 1133 1134 // Remove zero padding on numeric entities. 1135 $text = preg_replace( array_keys( $translation_preg ), array_values( $translation_preg ), $text ); 1136 1137 // Replace characters according to translation table. 1138 return strtr( $text, $translation ); 1139 } 1140 1141 /** 1142 * Checks for invalid UTF8 in a string. 1143 * 1144 * @since 2.8.0 1145 * 1146 * @param string $text The text which is to be checked. 1147 * @param bool $strip Optional. Whether to attempt to strip out invalid UTF8. Default false. 1148 * @return string The checked text. 1149 */ 1150 function wp_check_invalid_utf8( $text, $strip = false ) { 1151 $text = (string) $text; 1152 1153 if ( 0 === strlen( $text ) ) { 1154 return ''; 1155 } 1156 1157 // Store the site charset as a static to avoid multiple calls to get_option(). 1158 static $is_utf8 = null; 1159 if ( ! isset( $is_utf8 ) ) { 1160 $is_utf8 = is_utf8_charset(); 1161 } 1162 if ( ! $is_utf8 ) { 1163 return $text; 1164 } 1165 1166 // Check for support for utf8 in the installed PCRE library once and store the result in a static. 1167 static $utf8_pcre = null; 1168 if ( ! isset( $utf8_pcre ) ) { 1169 // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged 1170 $utf8_pcre = @preg_match( '/^./u', 'a' ); 1171 } 1172 // We can't demand utf8 in the PCRE installation, so just return the string in those cases. 1173 if ( ! $utf8_pcre ) { 1174 return $text; 1175 } 1176 1177 // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged -- preg_match fails when it encounters invalid UTF8 in $text. 1178 if ( 1 === @preg_match( '/^./us', $text ) ) { 1179 return $text; 1180 } 1181 1182 // Attempt to strip the bad chars if requested (not recommended). 1183 if ( $strip && function_exists( 'iconv' ) ) { 1184 return iconv( 'utf-8', 'utf-8', $text ); 1185 } 1186 1187 return ''; 1188 } 1189 1190 /** 1191 * Encodes the Unicode values to be used in the URI. 1192 * 1193 * @since 1.5.0 1194 * @since 5.8.3 Added the `encode_ascii_characters` parameter. 1195 * 1196 * @param string $utf8_string String to encode. 1197 * @param int $length Max length of the string. 1198 * @param bool $encode_ascii_characters Whether to encode ascii characters such as < " ' 1199 * @return string String with Unicode encoded for URI. 1200 */ 1201 function utf8_uri_encode( $utf8_string, $length = 0, $encode_ascii_characters = false ) { 1202 $unicode = ''; 1203 $values = array(); 1204 $num_octets = 1; 1205 $unicode_length = 0; 1206 1207 mbstring_binary_safe_encoding(); 1208 $string_length = strlen( $utf8_string ); 1209 reset_mbstring_encoding(); 1210 1211 for ( $i = 0; $i < $string_length; $i++ ) { 1212 1213 $value = ord( $utf8_string[ $i ] ); 1214 1215 if ( $value < 128 ) { 1216 $char = chr( $value ); 1217 $encoded_char = $encode_ascii_characters ? rawurlencode( $char ) : $char; 1218 $encoded_char_length = strlen( $encoded_char ); 1219 if ( $length && ( $unicode_length + $encoded_char_length ) > $length ) { 1220 break; 1221 } 1222 $unicode .= $encoded_char; 1223 $unicode_length += $encoded_char_length; 1224 } else { 1225 if ( count( $values ) === 0 ) { 1226 if ( $value < 224 ) { 1227 $num_octets = 2; 1228 } elseif ( $value < 240 ) { 1229 $num_octets = 3; 1230 } else { 1231 $num_octets = 4; 1232 } 1233 } 1234 1235 $values[] = $value; 1236 1237 if ( $length && ( $unicode_length + ( $num_octets * 3 ) ) > $length ) { 1238 break; 1239 } 1240 if ( count( $values ) === $num_octets ) { 1241 for ( $j = 0; $j < $num_octets; $j++ ) { 1242 $unicode .= '%' . dechex( $values[ $j ] ); 1243 } 1244 1245 $unicode_length += $num_octets * 3; 1246 1247 $values = array(); 1248 $num_octets = 1; 1249 } 1250 } 1251 } 1252 1253 return $unicode; 1254 } 1255 1256 /** 1257 * Converts all accent characters to ASCII characters. 1258 * 1259 * If there are no accent characters, then the string given is just returned. 1260 * 1261 * **Accent characters converted:** 1262 * 1263 * Currency signs: 1264 * 1265 * | Code | Glyph | Replacement | Description | 1266 * | -------- | ----- | ----------- | ------------------- | 1267 * | U+00A3 | £ | (empty) | British Pound sign | 1268 * | U+20AC | € | E | Euro sign | 1269 * 1270 * Decompositions for Latin-1 Supplement: 1271 * 1272 * | Code | Glyph | Replacement | Description | 1273 * | ------- | ----- | ----------- | -------------------------------------- | 1274 * | U+00AA | ª | a | Feminine ordinal indicator | 1275 * | U+00BA | º | o | Masculine ordinal indicator | 1276 * | U+00C0 | À | A | Latin capital letter A with grave | 1277 * | U+00C1 | Á | A | Latin capital letter A with acute | 1278 * | U+00C2 |  | A | Latin capital letter A with circumflex | 1279 * | U+00C3 | à | A | Latin capital letter A with tilde | 1280 * | U+00C4 | Ä | A | Latin capital letter A with diaeresis | 1281 * | U+00C5 | Å | A | Latin capital letter A with ring above | 1282 * | U+00C6 | Æ | AE | Latin capital letter AE | 1283 * | U+00C7 | Ç | C | Latin capital letter C with cedilla | 1284 * | U+00C8 | È | E | Latin capital letter E with grave | 1285 * | U+00C9 | É | E | Latin capital letter E with acute | 1286 * | U+00CA | Ê | E | Latin capital letter E with circumflex | 1287 * | U+00CB | Ë | E | Latin capital letter E with diaeresis | 1288 * | U+00CC | Ì | I | Latin capital letter I with grave | 1289 * | U+00CD | Í | I | Latin capital letter I with acute | 1290 * | U+00CE | Î | I | Latin capital letter I with circumflex | 1291 * | U+00CF | Ï | I | Latin capital letter I with diaeresis | 1292 * | U+00D0 | Ð | D | Latin capital letter Eth | 1293 * | U+00D1 | Ñ | N | Latin capital letter N with tilde | 1294 * | U+00D2 | Ò | O | Latin capital letter O with grave | 1295 * | U+00D3 | Ó | O | Latin capital letter O with acute | 1296 * | U+00D4 | Ô | O | Latin capital letter O with circumflex | 1297 * | U+00D5 | Õ | O | Latin capital letter O with tilde | 1298 * | U+00D6 | Ö | O | Latin capital letter O with diaeresis | 1299 * | U+00D8 | Ø | O | Latin capital letter O with stroke | 1300 * | U+00D9 | Ù | U | Latin capital letter U with grave | 1301 * | U+00DA | Ú | U | Latin capital letter U with acute | 1302 * | U+00DB | Û | U | Latin capital letter U with circumflex | 1303 * | U+00DC | Ü | U | Latin capital letter U with diaeresis | 1304 * | U+00DD | Ý | Y | Latin capital letter Y with acute | 1305 * | U+00DE | Þ | TH | Latin capital letter Thorn | 1306 * | U+00DF | ß | s | Latin small letter sharp s | 1307 * | U+00E0 | à | a | Latin small letter a with grave | 1308 * | U+00E1 | á | a | Latin small letter a with acute | 1309 * | U+00E2 | â | a | Latin small letter a with circumflex | 1310 * | U+00E3 | ã | a | Latin small letter a with tilde | 1311 * | U+00E4 | ä | a | Latin small letter a with diaeresis | 1312 * | U+00E5 | å | a | Latin small letter a with ring above | 1313 * | U+00E6 | æ | ae | Latin small letter ae | 1314 * | U+00E7 | ç | c | Latin small letter c with cedilla | 1315 * | U+00E8 | è | e | Latin small letter e with grave | 1316 * | U+00E9 | é | e | Latin small letter e with acute | 1317 * | U+00EA | ê | e | Latin small letter e with circumflex | 1318 * | U+00EB | ë | e | Latin small letter e with diaeresis | 1319 * | U+00EC | ì | i | Latin small letter i with grave | 1320 * | U+00ED | í | i | Latin small letter i with acute | 1321 * | U+00EE | î | i | Latin small letter i with circumflex | 1322 * | U+00EF | ï | i | Latin small letter i with diaeresis | 1323 * | U+00F0 | ð | d | Latin small letter Eth | 1324 * | U+00F1 | ñ | n | Latin small letter n with tilde | 1325 * | U+00F2 | ò | o | Latin small letter o with grave | 1326 * | U+00F3 | ó | o | Latin small letter o with acute | 1327 * | U+00F4 | ô | o | Latin small letter o with circumflex | 1328 * | U+00F5 | õ | o | Latin small letter o with tilde | 1329 * | U+00F6 | ö | o | Latin small letter o with diaeresis | 1330 * | U+00F8 | ø | o | Latin small letter o with stroke | 1331 * | U+00F9 | ù | u | Latin small letter u with grave | 1332 * | U+00FA | ú | u | Latin small letter u with acute | 1333 * | U+00FB | û | u | Latin small letter u with circumflex | 1334 * | U+00FC | ü | u | Latin small letter u with diaeresis | 1335 * | U+00FD | ý | y | Latin small letter y with acute | 1336 * | U+00FE | þ | th | Latin small letter Thorn | 1337 * | U+00FF | ÿ | y | Latin small letter y with diaeresis | 1338 * 1339 * Decompositions for Latin Extended-A: 1340 * 1341 * | Code | Glyph | Replacement | Description | 1342 * | ------- | ----- | ----------- | ------------------------------------------------- | 1343 * | U+0100 | Ā | A | Latin capital letter A with macron | 1344 * | U+0101 | ā | a | Latin small letter a with macron | 1345 * | U+0102 | Ă | A | Latin capital letter A with breve | 1346 * | U+0103 | ă | a | Latin small letter a with breve | 1347 * | U+0104 | Ą | A | Latin capital letter A with ogonek | 1348 * | U+0105 | ą | a | Latin small letter a with ogonek | 1349 * | U+01006 | Ć | C | Latin capital letter C with acute | 1350 * | U+0107 | ć | c | Latin small letter c with acute | 1351 * | U+0108 | Ĉ | C | Latin capital letter C with circumflex | 1352 * | U+0109 | ĉ | c | Latin small letter c with circumflex | 1353 * | U+010A | Ċ | C | Latin capital letter C with dot above | 1354 * | U+010B | ċ | c | Latin small letter c with dot above | 1355 * | U+010C | Č | C | Latin capital letter C with caron | 1356 * | U+010D | č | c | Latin small letter c with caron | 1357 * | U+010E | Ď | D | Latin capital letter D with caron | 1358 * | U+010F | ď | d | Latin small letter d with caron | 1359 * | U+0110 | Đ | D | Latin capital letter D with stroke | 1360 * | U+0111 | đ | d | Latin small letter d with stroke | 1361 * | U+0112 | Ē | E | Latin capital letter E with macron | 1362 * | U+0113 | ē | e | Latin small letter e with macron | 1363 * | U+0114 | Ĕ | E | Latin capital letter E with breve | 1364 * | U+0115 | ĕ | e | Latin small letter e with breve | 1365 * | U+0116 | Ė | E | Latin capital letter E with dot above | 1366 * | U+0117 | ė | e | Latin small letter e with dot above | 1367 * | U+0118 | Ę | E | Latin capital letter E with ogonek | 1368 * | U+0119 | ę | e | Latin small letter e with ogonek | 1369 * | U+011A | Ě | E | Latin capital letter E with caron | 1370 * | U+011B | ě | e | Latin small letter e with caron | 1371 * | U+011C | Ĝ | G | Latin capital letter G with circumflex | 1372 * | U+011D | ĝ | g | Latin small letter g with circumflex | 1373 * | U+011E | Ğ | G | Latin capital letter G with breve | 1374 * | U+011F | ğ | g | Latin small letter g with breve | 1375 * | U+0120 | Ġ | G | Latin capital letter G with dot above | 1376 * | U+0121 | ġ | g | Latin small letter g with dot above | 1377 * | U+0122 | Ģ | G | Latin capital letter G with cedilla | 1378 * | U+0123 | ģ | g | Latin small letter g with cedilla | 1379 * | U+0124 | Ĥ | H | Latin capital letter H with circumflex | 1380 * | U+0125 | ĥ | h | Latin small letter h with circumflex | 1381 * | U+0126 | Ħ | H | Latin capital letter H with stroke | 1382 * | U+0127 | ħ | h | Latin small letter h with stroke | 1383 * | U+0128 | Ĩ | I | Latin capital letter I with tilde | 1384 * | U+0129 | ĩ | i | Latin small letter i with tilde | 1385 * | U+012A | Ī | I | Latin capital letter I with macron | 1386 * | U+012B | ī | i | Latin small letter i with macron | 1387 * | U+012C | Ĭ | I | Latin capital letter I with breve | 1388 * | U+012D | ĭ | i | Latin small letter i with breve | 1389 * | U+012E | Į | I | Latin capital letter I with ogonek | 1390 * | U+012F | į | i | Latin small letter i with ogonek | 1391 * | U+0130 | İ | I | Latin capital letter I with dot above | 1392 * | U+0131 | ı | i | Latin small letter dotless i | 1393 * | U+0132 | IJ | IJ | Latin capital ligature IJ | 1394 * | U+0133 | ij | ij | Latin small ligature ij | 1395 * | U+0134 | Ĵ | J | Latin capital letter J with circumflex | 1396 * | U+0135 | ĵ | j | Latin small letter j with circumflex | 1397 * | U+0136 | Ķ | K | Latin capital letter K with cedilla | 1398 * | U+0137 | ķ | k | Latin small letter k with cedilla | 1399 * | U+0138 | ĸ | k | Latin small letter Kra | 1400 * | U+0139 | Ĺ | L | Latin capital letter L with acute | 1401 * | U+013A | ĺ | l | Latin small letter l with acute | 1402 * | U+013B | Ļ | L | Latin capital letter L with cedilla | 1403 * | U+013C | ļ | l | Latin small letter l with cedilla | 1404 * | U+013D | Ľ | L | Latin capital letter L with caron | 1405 * | U+013E | ľ | l | Latin small letter l with caron | 1406 * | U+013F | Ŀ | L | Latin capital letter L with middle dot | 1407 * | U+0140 | ŀ | l | Latin small letter l with middle dot | 1408 * | U+0141 | Ł | L | Latin capital letter L with stroke | 1409 * | U+0142 | ł | l | Latin small letter l with stroke | 1410 * | U+0143 | Ń | N | Latin capital letter N with acute | 1411 * | U+0144 | ń | n | Latin small letter N with acute | 1412 * | U+0145 | Ņ | N | Latin capital letter N with cedilla | 1413 * | U+0146 | ņ | n | Latin small letter n with cedilla | 1414 * | U+0147 | Ň | N | Latin capital letter N with caron | 1415 * | U+0148 | ň | n | Latin small letter n with caron | 1416 * | U+0149 | ʼn | n | Latin small letter n preceded by apostrophe | 1417 * | U+014A | Ŋ | N | Latin capital letter Eng | 1418 * | U+014B | ŋ | n | Latin small letter Eng | 1419 * | U+014C | Ō | O | Latin capital letter O with macron | 1420 * | U+014D | ō | o | Latin small letter o with macron | 1421 * | U+014E | Ŏ | O | Latin capital letter O with breve | 1422 * | U+014F | ŏ | o | Latin small letter o with breve | 1423 * | U+0150 | Ő | O | Latin capital letter O with double acute | 1424 * | U+0151 | ő | o | Latin small letter o with double acute | 1425 * | U+0152 | Œ | OE | Latin capital ligature OE | 1426 * | U+0153 | œ | oe | Latin small ligature oe | 1427 * | U+0154 | Ŕ | R | Latin capital letter R with acute | 1428 * | U+0155 | ŕ | r | Latin small letter r with acute | 1429 * | U+0156 | Ŗ | R | Latin capital letter R with cedilla | 1430 * | U+0157 | ŗ | r | Latin small letter r with cedilla | 1431 * | U+0158 | Ř | R | Latin capital letter R with caron | 1432 * | U+0159 | ř | r | Latin small letter r with caron | 1433 * | U+015A | Ś | S | Latin capital letter S with acute | 1434 * | U+015B | ś | s | Latin small letter s with acute | 1435 * | U+015C | Ŝ | S | Latin capital letter S with circumflex | 1436 * | U+015D | ŝ | s | Latin small letter s with circumflex | 1437 * | U+015E | Ş | S | Latin capital letter S with cedilla | 1438 * | U+015F | ş | s | Latin small letter s with cedilla | 1439 * | U+0160 | Š | S | Latin capital letter S with caron | 1440 * | U+0161 | š | s | Latin small letter s with caron | 1441 * | U+0162 | Ţ | T | Latin capital letter T with cedilla | 1442 * | U+0163 | ţ | t | Latin small letter t with cedilla | 1443 * | U+0164 | Ť | T | Latin capital letter T with caron | 1444 * | U+0165 | ť | t | Latin small letter t with caron | 1445 * | U+0166 | Ŧ | T | Latin capital letter T with stroke | 1446 * | U+0167 | ŧ | t | Latin small letter t with stroke | 1447 * | U+0168 | Ũ | U | Latin capital letter U with tilde | 1448 * | U+0169 | ũ | u | Latin small letter u with tilde | 1449 * | U+016A | Ū | U | Latin capital letter U with macron | 1450 * | U+016B | ū | u | Latin small letter u with macron | 1451 * | U+016C | Ŭ | U | Latin capital letter U with breve | 1452 * | U+016D | ŭ | u | Latin small letter u with breve | 1453 * | U+016E | Ů | U | Latin capital letter U with ring above | 1454 * | U+016F | ů | u | Latin small letter u with ring above | 1455 * | U+0170 | Ű | U | Latin capital letter U with double acute | 1456 * | U+0171 | ű | u | Latin small letter u with double acute | 1457 * | U+0172 | Ų | U | Latin capital letter U with ogonek | 1458 * | U+0173 | ų | u | Latin small letter u with ogonek | 1459 * | U+0174 | Ŵ | W | Latin capital letter W with circumflex | 1460 * | U+0175 | ŵ | w | Latin small letter w with circumflex | 1461 * | U+0176 | Ŷ | Y | Latin capital letter Y with circumflex | 1462 * | U+0177 | ŷ | y | Latin small letter y with circumflex | 1463 * | U+0178 | Ÿ | Y | Latin capital letter Y with diaeresis | 1464 * | U+0179 | Ź | Z | Latin capital letter Z with acute | 1465 * | U+017A | ź | z | Latin small letter z with acute | 1466 * | U+017B | Ż | Z | Latin capital letter Z with dot above | 1467 * | U+017C | ż | z | Latin small letter z with dot above | 1468 * | U+017D | Ž | Z | Latin capital letter Z with caron | 1469 * | U+017E | ž | z | Latin small letter z with caron | 1470 * | U+017F | ſ | s | Latin small letter long s | 1471 * | U+01A0 | Ơ | O | Latin capital letter O with horn | 1472 * | U+01A1 | ơ | o | Latin small letter o with horn | 1473 * | U+01AF | Ư | U | Latin capital letter U with horn | 1474 * | U+01B0 | ư | u | Latin small letter u with horn | 1475 * | U+01CD | Ǎ | A | Latin capital letter A with caron | 1476 * | U+01CE | ǎ | a | Latin small letter a with caron | 1477 * | U+01CF | Ǐ | I | Latin capital letter I with caron | 1478 * | U+01D0 | ǐ | i | Latin small letter i with caron | 1479 * | U+01D1 | Ǒ | O | Latin capital letter O with caron | 1480 * | U+01D2 | ǒ | o | Latin small letter o with caron | 1481 * | U+01D3 | Ǔ | U | Latin capital letter U with caron | 1482 * | U+01D4 | ǔ | u | Latin small letter u with caron | 1483 * | U+01D5 | Ǖ | U | Latin capital letter U with diaeresis and macron | 1484 * | U+01D6 | ǖ | u | Latin small letter u with diaeresis and macron | 1485 * | U+01D7 | Ǘ | U | Latin capital letter U with diaeresis and acute | 1486 * | U+01D8 | ǘ | u | Latin small letter u with diaeresis and acute | 1487 * | U+01D9 | Ǚ | U | Latin capital letter U with diaeresis and caron | 1488 * | U+01DA | ǚ | u | Latin small letter u with diaeresis and caron | 1489 * | U+01DB | Ǜ | U | Latin capital letter U with diaeresis and grave | 1490 * | U+01DC | ǜ | u | Latin small letter u with diaeresis and grave | 1491 * 1492 * Decompositions for Latin Extended-B: 1493 * 1494 * | Code | Glyph | Replacement | Description | 1495 * | -------- | ----- | ----------- | ----------------------------------------- | 1496 * | U+018F | Ə | E | Latin capital letter Ə | 1497 * | U+0259 | ǝ | e | Latin small letter ǝ | 1498 * | U+0218 | Ș | S | Latin capital letter S with comma below | 1499 * | U+0219 | ș | s | Latin small letter s with comma below | 1500 * | U+021A | Ț | T | Latin capital letter T with comma below | 1501 * | U+021B | ț | t | Latin small letter t with comma below | 1502 * 1503 * Vowels with diacritic (Chinese, Hanyu Pinyin): 1504 * 1505 * | Code | Glyph | Replacement | Description | 1506 * | -------- | ----- | ----------- | ----------------------------------------------------- | 1507 * | U+0251 | ɑ | a | Latin small letter alpha | 1508 * | U+1EA0 | Ạ | A | Latin capital letter A with dot below | 1509 * | U+1EA1 | ạ | a | Latin small letter a with dot below | 1510 * | U+1EA2 | Ả | A | Latin capital letter A with hook above | 1511 * | U+1EA3 | ả | a | Latin small letter a with hook above | 1512 * | U+1EA4 | Ấ | A | Latin capital letter A with circumflex and acute | 1513 * | U+1EA5 | ấ | a | Latin small letter a with circumflex and acute | 1514 * | U+1EA6 | Ầ | A | Latin capital letter A with circumflex and grave | 1515 * | U+1EA7 | ầ | a | Latin small letter a with circumflex and grave | 1516 * | U+1EA8 | Ẩ | A | Latin capital letter A with circumflex and hook above | 1517 * | U+1EA9 | ẩ | a | Latin small letter a with circumflex and hook above | 1518 * | U+1EAA | Ẫ | A | Latin capital letter A with circumflex and tilde | 1519 * | U+1EAB | ẫ | a | Latin small letter a with circumflex and tilde | 1520 * | U+1EA6 | Ậ | A | Latin capital letter A with circumflex and dot below | 1521 * | U+1EAD | ậ | a | Latin small letter a with circumflex and dot below | 1522 * | U+1EAE | Ắ | A | Latin capital letter A with breve and acute | 1523 * | U+1EAF | ắ | a | Latin small letter a with breve and acute | 1524 * | U+1EB0 | Ằ | A | Latin capital letter A with breve and grave | 1525 * | U+1EB1 | ằ | a | Latin small letter a with breve and grave | 1526 * | U+1EB2 | Ẳ | A | Latin capital letter A with breve and hook above | 1527 * | U+1EB3 | ẳ | a | Latin small letter a with breve and hook above | 1528 * | U+1EB4 | Ẵ | A | Latin capital letter A with breve and tilde | 1529 * | U+1EB5 | ẵ | a | Latin small letter a with breve and tilde | 1530 * | U+1EB6 | Ặ | A | Latin capital letter A with breve and dot below | 1531 * | U+1EB7 | ặ | a | Latin small letter a with breve and dot below | 1532 * | U+1EB8 | Ẹ | E | Latin capital letter E with dot below | 1533 * | U+1EB9 | ẹ | e | Latin small letter e with dot below | 1534 * | U+1EBA | Ẻ | E | Latin capital letter E with hook above | 1535 * | U+1EBB | ẻ | e | Latin small letter e with hook above | 1536 * | U+1EBC | Ẽ | E | Latin capital letter E with tilde | 1537 * | U+1EBD | ẽ | e | Latin small letter e with tilde | 1538 * | U+1EBE | Ế | E | Latin capital letter E with circumflex and acute | 1539 * | U+1EBF | ế | e | Latin small letter e with circumflex and acute | 1540 * | U+1EC0 | Ề | E | Latin capital letter E with circumflex and grave | 1541 * | U+1EC1 | ề | e | Latin small letter e with circumflex and grave | 1542 * | U+1EC2 | Ể | E | Latin capital letter E with circumflex and hook above | 1543 * | U+1EC3 | ể | e | Latin small letter e with circumflex and hook above | 1544 * | U+1EC4 | Ễ | E | Latin capital letter E with circumflex and tilde | 1545 * | U+1EC5 | ễ | e | Latin small letter e with circumflex and tilde | 1546 * | U+1EC6 | Ệ | E | Latin capital letter E with circumflex and dot below | 1547 * | U+1EC7 | ệ | e | Latin small letter e with circumflex and dot below | 1548 * | U+1EC8 | Ỉ | I | Latin capital letter I with hook above | 1549 * | U+1EC9 | ỉ | i | Latin small letter i with hook above | 1550 * | U+1ECA | Ị | I | Latin capital letter I with dot below | 1551 * | U+1ECB | ị | i | Latin small letter i with dot below | 1552 * | U+1ECC | Ọ | O | Latin capital letter O with dot below | 1553 * | U+1ECD | ọ | o | Latin small letter o with dot below | 1554 * | U+1ECE | Ỏ | O | Latin capital letter O with hook above | 1555 * | U+1ECF | ỏ | o | Latin small letter o with hook above | 1556 * | U+1ED0 | Ố | O | Latin capital letter O with circumflex and acute | 1557 * | U+1ED1 | ố | o | Latin small letter o with circumflex and acute | 1558 * | U+1ED2 | Ồ | O | Latin capital letter O with circumflex and grave | 1559 * | U+1ED3 | ồ | o | Latin small letter o with circumflex and grave | 1560 * | U+1ED4 | Ổ | O | Latin capital letter O with circumflex and hook above | 1561 * | U+1ED5 | ổ | o | Latin small letter o with circumflex and hook above | 1562 * | U+1ED6 | Ỗ | O | Latin capital letter O with circumflex and tilde | 1563 * | U+1ED7 | ỗ | o | Latin small letter o with circumflex and tilde | 1564 * | U+1ED8 | Ộ | O | Latin capital letter O with circumflex and dot below | 1565 * | U+1ED9 | ộ | o | Latin small letter o with circumflex and dot below | 1566 * | U+1EDA | Ớ | O | Latin capital letter O with horn and acute | 1567 * | U+1EDB | ớ | o | Latin small letter o with horn and acute | 1568 * | U+1EDC | Ờ | O | Latin capital letter O with horn and grave | 1569 * | U+1EDD | ờ | o | Latin small letter o with horn and grave | 1570 * | U+1EDE | Ở | O | Latin capital letter O with horn and hook above | 1571 * | U+1EDF | ở | o | Latin small letter o with horn and hook above | 1572 * | U+1EE0 | Ỡ | O | Latin capital letter O with horn and tilde | 1573 * | U+1EE1 | ỡ | o | Latin small letter o with horn and tilde | 1574 * | U+1EE2 | Ợ | O | Latin capital letter O with horn and dot below | 1575 * | U+1EE3 | ợ | o | Latin small letter o with horn and dot below | 1576 * | U+1EE4 | Ụ | U | Latin capital letter U with dot below | 1577 * | U+1EE5 | ụ | u | Latin small letter u with dot below | 1578 * | U+1EE6 | Ủ | U | Latin capital letter U with hook above | 1579 * | U+1EE7 | ủ | u | Latin small letter u with hook above | 1580 * | U+1EE8 | Ứ | U | Latin capital letter U with horn and acute | 1581 * | U+1EE9 | ứ | u | Latin small letter u with horn and acute | 1582 * | U+1EEA | Ừ | U | Latin capital letter U with horn and grave | 1583 * | U+1EEB | ừ | u | Latin small letter u with horn and grave | 1584 * | U+1EEC | Ử | U | Latin capital letter U with horn and hook above | 1585 * | U+1EED | ử | u | Latin small letter u with horn and hook above | 1586 * | U+1EEE | Ữ | U | Latin capital letter U with horn and tilde | 1587 * | U+1EEF | ữ | u | Latin small letter u with horn and tilde | 1588 * | U+1EF0 | Ự | U | Latin capital letter U with horn and dot below | 1589 * | U+1EF1 | ự | u | Latin small letter u with horn and dot below | 1590 * | U+1EF2 | Ỳ | Y | Latin capital letter Y with grave | 1591 * | U+1EF3 | ỳ | y | Latin small letter y with grave | 1592 * | U+1EF4 | Ỵ | Y | Latin capital letter Y with dot below | 1593 * | U+1EF5 | ỵ | y | Latin small letter y with dot below | 1594 * | U+1EF6 | Ỷ | Y | Latin capital letter Y with hook above | 1595 * | U+1EF7 | ỷ | y | Latin small letter y with hook above | 1596 * | U+1EF8 | Ỹ | Y | Latin capital letter Y with tilde | 1597 * | U+1EF9 | ỹ | y | Latin small letter y with tilde | 1598 * 1599 * German (`de_DE`), German formal (`de_DE_formal`), German (Switzerland) formal (`de_CH`), 1600 * German (Switzerland) informal (`de_CH_informal`), and German (Austria) (`de_AT`) locales: 1601 * 1602 * | Code | Glyph | Replacement | Description | 1603 * | -------- | ----- | ----------- | --------------------------------------- | 1604 * | U+00C4 | Ä | Ae | Latin capital letter A with diaeresis | 1605 * | U+00E4 | ä | ae | Latin small letter a with diaeresis | 1606 * | U+00D6 | Ö | Oe | Latin capital letter O with diaeresis | 1607 * | U+00F6 | ö | oe | Latin small letter o with diaeresis | 1608 * | U+00DC | Ü | Ue | Latin capital letter U with diaeresis | 1609 * | U+00FC | ü | ue | Latin small letter u with diaeresis | 1610 * | U+00DF | ß | ss | Latin small letter sharp s | 1611 * 1612 * Danish (`da_DK`) locale: 1613 * 1614 * | Code | Glyph | Replacement | Description | 1615 * | -------- | ----- | ----------- | --------------------------------------- | 1616 * | U+00C6 | Æ | Ae | Latin capital letter AE | 1617 * | U+00E6 | æ | ae | Latin small letter ae | 1618 * | U+00D8 | Ø | Oe | Latin capital letter O with stroke | 1619 * | U+00F8 | ø | oe | Latin small letter o with stroke | 1620 * | U+00C5 | Å | Aa | Latin capital letter A with ring above | 1621 * | U+00E5 | å | aa | Latin small letter a with ring above | 1622 * 1623 * Catalan (`ca`) locale: 1624 * 1625 * | Code | Glyph | Replacement | Description | 1626 * | -------- | ----- | ----------- | --------------------------------------- | 1627 * | U+00B7 | l·l | ll | Flown dot (between two Ls) | 1628 * 1629 * Serbian (`sr_RS`) and Bosnian (`bs_BA`) locales: 1630 * 1631 * | Code | Glyph | Replacement | Description | 1632 * | -------- | ----- | ----------- | --------------------------------------- | 1633 * | U+0110 | Đ | DJ | Latin capital letter D with stroke | 1634 * | U+0111 | đ | dj | Latin small letter d with stroke | 1635 * 1636 * @since 1.2.1 1637 * @since 4.6.0 Added locale support for `de_CH`, `de_CH_informal`, and `ca`. 1638 * @since 4.7.0 Added locale support for `sr_RS`. 1639 * @since 4.8.0 Added locale support for `bs_BA`. 1640 * @since 5.7.0 Added locale support for `de_AT`. 1641 * @since 6.0.0 Added the `$locale` parameter. 1642 * @since 6.1.0 Added Unicode NFC encoding normalization support. 1643 * 1644 * @param string $text Text that might have accent characters. 1645 * @param string $locale Optional. The locale to use for accent removal. Some character 1646 * replacements depend on the locale being used (e.g. 'de_DE'). 1647 * Defaults to the current locale. 1648 * @return string Filtered string with replaced "nice" characters. 1649 */ 1650 function remove_accents( $text, $locale = '' ) { 1651 if ( ! preg_match( '/[\x80-\xff]/', $text ) ) { 1652 return $text; 1653 } 1654 1655 if ( wp_is_valid_utf8( $text ) ) { 1656 1657 /* 1658 * Unicode sequence normalization from NFD (Normalization Form Decomposed) 1659 * to NFC (Normalization Form [Pre]Composed), the encoding used in this function. 1660 */ 1661 if ( function_exists( 'normalizer_is_normalized' ) 1662 && function_exists( 'normalizer_normalize' ) 1663 ) { 1664 if ( ! normalizer_is_normalized( $text ) ) { 1665 $text = normalizer_normalize( $text ); 1666 } 1667 } 1668 1669 $chars = array( 1670 // Decompositions for Latin-1 Supplement. 1671 'ª' => 'a', 1672 'º' => 'o', 1673 'À' => 'A', 1674 'Á' => 'A', 1675 'Â' => 'A', 1676 'Ã' => 'A', 1677 'Ä' => 'A', 1678 'Å' => 'A', 1679 'Æ' => 'AE', 1680 'Ç' => 'C', 1681 'È' => 'E', 1682 'É' => 'E', 1683 'Ê' => 'E', 1684 'Ë' => 'E', 1685 'Ì' => 'I', 1686 'Í' => 'I', 1687 'Î' => 'I', 1688 'Ï' => 'I', 1689 'Ð' => 'D', 1690 'Ñ' => 'N', 1691 'Ò' => 'O', 1692 'Ó' => 'O', 1693 'Ô' => 'O', 1694 'Õ' => 'O', 1695 'Ö' => 'O', 1696 'Ù' => 'U', 1697 'Ú' => 'U', 1698 'Û' => 'U', 1699 'Ü' => 'U', 1700 'Ý' => 'Y', 1701 'Þ' => 'TH', 1702 'ß' => 's', 1703 'à' => 'a', 1704 'á' => 'a', 1705 'â' => 'a', 1706 'ã' => 'a', 1707 'ä' => 'a', 1708 'å' => 'a', 1709 'æ' => 'ae', 1710 'ç' => 'c', 1711 'è' => 'e', 1712 'é' => 'e', 1713 'ê' => 'e', 1714 'ë' => 'e', 1715 'ì' => 'i', 1716 'í' => 'i', 1717 'î' => 'i', 1718 'ï' => 'i', 1719 'ð' => 'd', 1720 'ñ' => 'n', 1721 'ò' => 'o', 1722 'ó' => 'o', 1723 'ô' => 'o', 1724 'õ' => 'o', 1725 'ö' => 'o', 1726 'ø' => 'o', 1727 'ù' => 'u', 1728 'ú' => 'u', 1729 'û' => 'u', 1730 'ü' => 'u', 1731 'ý' => 'y', 1732 'þ' => 'th', 1733 'ÿ' => 'y', 1734 'Ø' => 'O', 1735 // Decompositions for Latin Extended-A. 1736 'Ā' => 'A', 1737 'ā' => 'a', 1738 'Ă' => 'A', 1739 'ă' => 'a', 1740 'Ą' => 'A', 1741 'ą' => 'a', 1742 'Ć' => 'C', 1743 'ć' => 'c', 1744 'Ĉ' => 'C', 1745 'ĉ' => 'c', 1746 'Ċ' => 'C', 1747 'ċ' => 'c', 1748 'Č' => 'C', 1749 'č' => 'c', 1750 'Ď' => 'D', 1751 'ď' => 'd', 1752 'Đ' => 'D', 1753 'đ' => 'd', 1754 'Ē' => 'E', 1755 'ē' => 'e', 1756 'Ĕ' => 'E', 1757 'ĕ' => 'e', 1758 'Ė' => 'E', 1759 'ė' => 'e', 1760 'Ę' => 'E', 1761 'ę' => 'e', 1762 'Ě' => 'E', 1763 'ě' => 'e', 1764 'Ĝ' => 'G', 1765 'ĝ' => 'g', 1766 'Ğ' => 'G', 1767 'ğ' => 'g', 1768 'Ġ' => 'G', 1769 'ġ' => 'g', 1770 'Ģ' => 'G', 1771 'ģ' => 'g', 1772 'Ĥ' => 'H', 1773 'ĥ' => 'h', 1774 'Ħ' => 'H', 1775 'ħ' => 'h', 1776 'Ĩ' => 'I', 1777 'ĩ' => 'i', 1778 'Ī' => 'I', 1779 'ī' => 'i', 1780 'Ĭ' => 'I', 1781 'ĭ' => 'i', 1782 'Į' => 'I', 1783 'į' => 'i', 1784 'İ' => 'I', 1785 'ı' => 'i', 1786 'IJ' => 'IJ', 1787 'ij' => 'ij', 1788 'Ĵ' => 'J', 1789 'ĵ' => 'j', 1790 'Ķ' => 'K', 1791 'ķ' => 'k', 1792 'ĸ' => 'k', 1793 'Ĺ' => 'L', 1794 'ĺ' => 'l', 1795 'Ļ' => 'L', 1796 'ļ' => 'l', 1797 'Ľ' => 'L', 1798 'ľ' => 'l', 1799 'Ŀ' => 'L', 1800 'ŀ' => 'l', 1801 'Ł' => 'L', 1802 'ł' => 'l', 1803 'Ń' => 'N', 1804 'ń' => 'n', 1805 'Ņ' => 'N', 1806 'ņ' => 'n', 1807 'Ň' => 'N', 1808 'ň' => 'n', 1809 'ʼn' => 'n', 1810 'Ŋ' => 'N', 1811 'ŋ' => 'n', 1812 'Ō' => 'O', 1813 'ō' => 'o', 1814 'Ŏ' => 'O', 1815 'ŏ' => 'o', 1816 'Ő' => 'O', 1817 'ő' => 'o', 1818 'Œ' => 'OE', 1819 'œ' => 'oe', 1820 'Ŕ' => 'R', 1821 'ŕ' => 'r', 1822 'Ŗ' => 'R', 1823 'ŗ' => 'r', 1824 'Ř' => 'R', 1825 'ř' => 'r', 1826 'Ś' => 'S', 1827 'ś' => 's', 1828 'Ŝ' => 'S', 1829 'ŝ' => 's', 1830 'Ş' => 'S', 1831 'ş' => 's', 1832 'Š' => 'S', 1833 'š' => 's', 1834 'Ţ' => 'T', 1835 'ţ' => 't', 1836 'Ť' => 'T', 1837 'ť' => 't', 1838 'Ŧ' => 'T', 1839 'ŧ' => 't', 1840 'Ũ' => 'U', 1841 'ũ' => 'u', 1842 'Ū' => 'U', 1843 'ū' => 'u', 1844 'Ŭ' => 'U', 1845 'ŭ' => 'u', 1846 'Ů' => 'U', 1847 'ů' => 'u', 1848 'Ű' => 'U', 1849 'ű' => 'u', 1850 'Ų' => 'U', 1851 'ų' => 'u', 1852 'Ŵ' => 'W', 1853 'ŵ' => 'w', 1854 'Ŷ' => 'Y', 1855 'ŷ' => 'y', 1856 'Ÿ' => 'Y', 1857 'Ź' => 'Z', 1858 'ź' => 'z', 1859 'Ż' => 'Z', 1860 'ż' => 'z', 1861 'Ž' => 'Z', 1862 'ž' => 'z', 1863 'ſ' => 's', 1864 // Decompositions for Latin Extended-B. 1865 'Ə' => 'E', 1866 'ǝ' => 'e', 1867 'Ș' => 'S', 1868 'ș' => 's', 1869 'Ț' => 'T', 1870 'ț' => 't', 1871 // Euro sign. 1872 '€' => 'E', 1873 // GBP (Pound) sign. 1874 '£' => '', 1875 // Vowels with diacritic (Vietnamese). Unmarked. 1876 'Ơ' => 'O', 1877 'ơ' => 'o', 1878 'Ư' => 'U', 1879 'ư' => 'u', 1880 // Grave accent. 1881 'Ầ' => 'A', 1882 'ầ' => 'a', 1883 'Ằ' => 'A', 1884 'ằ' => 'a', 1885 'Ề' => 'E', 1886 'ề' => 'e', 1887 'Ồ' => 'O', 1888 'ồ' => 'o', 1889 'Ờ' => 'O', 1890 'ờ' => 'o', 1891 'Ừ' => 'U', 1892 'ừ' => 'u', 1893 'Ỳ' => 'Y', 1894 'ỳ' => 'y', 1895 // Hook. 1896 'Ả' => 'A', 1897 'ả' => 'a', 1898 'Ẩ' => 'A', 1899 'ẩ' => 'a', 1900 'Ẳ' => 'A', 1901 'ẳ' => 'a', 1902 'Ẻ' => 'E', 1903 'ẻ' => 'e', 1904 'Ể' => 'E', 1905 'ể' => 'e', 1906 'Ỉ' => 'I', 1907 'ỉ' => 'i', 1908 'Ỏ' => 'O', 1909 'ỏ' => 'o', 1910 'Ổ' => 'O', 1911 'ổ' => 'o', 1912 'Ở' => 'O', 1913 'ở' => 'o', 1914 'Ủ' => 'U', 1915 'ủ' => 'u', 1916 'Ử' => 'U', 1917 'ử' => 'u', 1918 'Ỷ' => 'Y', 1919 'ỷ' => 'y', 1920 // Tilde. 1921 'Ẫ' => 'A', 1922 'ẫ' => 'a', 1923 'Ẵ' => 'A', 1924 'ẵ' => 'a', 1925 'Ẽ' => 'E', 1926 'ẽ' => 'e', 1927 'Ễ' => 'E', 1928 'ễ' => 'e', 1929 'Ỗ' => 'O', 1930 'ỗ' => 'o', 1931 'Ỡ' => 'O', 1932 'ỡ' => 'o', 1933 'Ữ' => 'U', 1934 'ữ' => 'u', 1935 'Ỹ' => 'Y', 1936 'ỹ' => 'y', 1937 // Acute accent. 1938 'Ấ' => 'A', 1939 'ấ' => 'a', 1940 'Ắ' => 'A', 1941 'ắ' => 'a', 1942 'Ế' => 'E', 1943 'ế' => 'e', 1944 'Ố' => 'O', 1945 'ố' => 'o', 1946 'Ớ' => 'O', 1947 'ớ' => 'o', 1948 'Ứ' => 'U', 1949 'ứ' => 'u', 1950 // Dot below. 1951 'Ạ' => 'A', 1952 'ạ' => 'a', 1953 'Ậ' => 'A', 1954 'ậ' => 'a', 1955 'Ặ' => 'A', 1956 'ặ' => 'a', 1957 'Ẹ' => 'E', 1958 'ẹ' => 'e', 1959 'Ệ' => 'E', 1960 'ệ' => 'e', 1961 'Ị' => 'I', 1962 'ị' => 'i', 1963 'Ọ' => 'O', 1964 'ọ' => 'o', 1965 'Ộ' => 'O', 1966 'ộ' => 'o', 1967 'Ợ' => 'O', 1968 'ợ' => 'o', 1969 'Ụ' => 'U', 1970 'ụ' => 'u', 1971 'Ự' => 'U', 1972 'ự' => 'u', 1973 'Ỵ' => 'Y', 1974 'ỵ' => 'y', 1975 // Vowels with diacritic (Chinese, Hanyu Pinyin). 1976 'ɑ' => 'a', 1977 // Macron. 1978 'Ǖ' => 'U', 1979 'ǖ' => 'u', 1980 // Acute accent. 1981 'Ǘ' => 'U', 1982 'ǘ' => 'u', 1983 // Caron. 1984 'Ǎ' => 'A', 1985 'ǎ' => 'a', 1986 'Ǐ' => 'I', 1987 'ǐ' => 'i', 1988 'Ǒ' => 'O', 1989 'ǒ' => 'o', 1990 'Ǔ' => 'U', 1991 'ǔ' => 'u', 1992 'Ǚ' => 'U', 1993 'ǚ' => 'u', 1994 // Grave accent. 1995 'Ǜ' => 'U', 1996 'ǜ' => 'u', 1997 ); 1998 1999 // Used for locale-specific rules. 2000 if ( empty( $locale ) ) { 2001 $locale = get_locale(); 2002 } 2003 2004 /* 2005 * German has various locales (de_DE, de_CH, de_AT, ...) with formal and informal variants. 2006 * There is no 3-letter locale like 'def', so checking for 'de' instead of 'de_' is safe, 2007 * since 'de' itself would be a valid locale too. 2008 */ 2009 if ( str_starts_with( $locale, 'de' ) ) { 2010 $chars['Ä'] = 'Ae'; 2011 $chars['ä'] = 'ae'; 2012 $chars['Ö'] = 'Oe'; 2013 $chars['ö'] = 'oe'; 2014 $chars['Ü'] = 'Ue'; 2015 $chars['ü'] = 'ue'; 2016 $chars['ß'] = 'ss'; 2017 } elseif ( 'da_DK' === $locale ) { 2018 $chars['Æ'] = 'Ae'; 2019 $chars['æ'] = 'ae'; 2020 $chars['Ø'] = 'Oe'; 2021 $chars['ø'] = 'oe'; 2022 $chars['Å'] = 'Aa'; 2023 $chars['å'] = 'aa'; 2024 } elseif ( 'ca' === $locale ) { 2025 $chars['l·l'] = 'll'; 2026 } elseif ( 'sr_RS' === $locale || 'bs_BA' === $locale ) { 2027 $chars['Đ'] = 'DJ'; 2028 $chars['đ'] = 'dj'; 2029 } 2030 2031 $text = strtr( $text, $chars ); 2032 } else { 2033 $chars = array(); 2034 // Assume ISO-8859-1 if not UTF-8. 2035 $chars['in'] = "\x80\x83\x8a\x8e\x9a\x9e" 2036 . "\x9f\xa2\xa5\xb5\xc0\xc1\xc2" 2037 . "\xc3\xc4\xc5\xc7\xc8\xc9\xca" 2038 . "\xcb\xcc\xcd\xce\xcf\xd1\xd2" 2039 . "\xd3\xd4\xd5\xd6\xd8\xd9\xda" 2040 . "\xdb\xdc\xdd\xe0\xe1\xe2\xe3" 2041 . "\xe4\xe5\xe7\xe8\xe9\xea\xeb" 2042 . "\xec\xed\xee\xef\xf1\xf2\xf3" 2043 . "\xf4\xf5\xf6\xf8\xf9\xfa\xfb" 2044 . "\xfc\xfd\xff"; 2045 2046 $chars['out'] = 'EfSZszYcYuAAAAAACEEEEIIIINOOOOOOUUUUYaaaaaaceeeeiiiinoooooouuuuyy'; 2047 2048 $text = strtr( $text, $chars['in'], $chars['out'] ); 2049 $double_chars = array(); 2050 $double_chars['in'] = array( "\x8c", "\x9c", "\xc6", "\xd0", "\xde", "\xdf", "\xe6", "\xf0", "\xfe" ); 2051 $double_chars['out'] = array( 'OE', 'oe', 'AE', 'DH', 'TH', 'ss', 'ae', 'dh', 'th' ); 2052 $text = str_replace( $double_chars['in'], $double_chars['out'], $text ); 2053 } 2054 2055 return $text; 2056 } 2057 2058 /** 2059 * Sanitizes a filename, replacing whitespace with dashes. 2060 * 2061 * Removes special characters that are illegal in filenames on certain 2062 * operating systems and special characters requiring special escaping 2063 * to manipulate at the command line. Replaces spaces and consecutive 2064 * dashes with a single dash. Trims period, dash and underscore from beginning 2065 * and end of filename. It is not guaranteed that this function will return a 2066 * filename that is allowed to be uploaded. 2067 * 2068 * @since 2.1.0 2069 * 2070 * @param string $filename The filename to be sanitized. 2071 * @return string The sanitized filename. 2072 */ 2073 function sanitize_file_name( $filename ) { 2074 $filename_raw = $filename; 2075 $filename = remove_accents( $filename ); 2076 2077 $special_chars = array( '?', '[', ']', '/', '\\', '=', '<', '>', ':', ';', ',', "'", '"', '&', '$', '#', '*', '(', ')', '|', '~', '`', '!', '{', '}', '%', '+', '’', '«', '»', '”', '“', chr( 0 ) ); 2078 2079 if ( ! wp_is_valid_utf8( $filename ) ) { 2080 $_ext = pathinfo( $filename, PATHINFO_EXTENSION ); 2081 $_name = pathinfo( $filename, PATHINFO_FILENAME ); 2082 $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext; 2083 } 2084 2085 if ( _wp_can_use_pcre_u() ) { 2086 /** 2087 * Replace all whitespace characters with a basic space (U+0020). 2088 * 2089 * The “Zs” in the pattern selects characters in the `Space_Separator` 2090 * category, which is what Unicode considers space characters. 2091 * 2092 * @see https://www.unicode.org/reports/tr44/#General_Category_Values 2093 * @see https://www.unicode.org/versions/Unicode16.0.0/core-spec/chapter-6/#G17548 2094 * @see https://www.php.net/manual/en/regexp.reference.unicode.php 2095 */ 2096 $filename = preg_replace( '#\p{Zs}#siu', ' ', $filename ); 2097 } 2098 2099 /** 2100 * Filters the list of characters to remove from a filename. 2101 * 2102 * @since 2.8.0 2103 * 2104 * @param string[] $special_chars Array of characters to remove. 2105 * @param string $filename_raw The original filename to be sanitized. 2106 */ 2107 $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw ); 2108 2109 $filename = str_replace( $special_chars, '', $filename ); 2110 $filename = str_replace( array( '%20', '+' ), '-', $filename ); 2111 $filename = preg_replace( '/\.{2,}/', '.', $filename ); 2112 $filename = preg_replace( '/[\r\n\t -]+/', '-', $filename ); 2113 $filename = trim( $filename, '.-_' ); 2114 2115 if ( ! str_contains( $filename, '.' ) ) { 2116 $mime_types = wp_get_mime_types(); 2117 $filetype = wp_check_filetype( 'test.' . $filename, $mime_types ); 2118 if ( $filetype['ext'] === $filename ) { 2119 $filename = 'unnamed-file.' . $filetype['ext']; 2120 } 2121 } 2122 2123 // Split the filename into a base and extension[s]. 2124 $parts = explode( '.', $filename ); 2125 2126 // Return if only one extension. 2127 if ( count( $parts ) <= 2 ) { 2128 /** This filter is documented in wp-includes/formatting.php */ 2129 return apply_filters( 'sanitize_file_name', $filename, $filename_raw ); 2130 } 2131 2132 // Process multiple extensions. 2133 $filename = array_shift( $parts ); 2134 $extension = array_pop( $parts ); 2135 $mimes = get_allowed_mime_types(); 2136 2137 /* 2138 * Loop over any intermediate extensions. Postfix them with a trailing underscore 2139 * if they are a 2 - 5 character long alpha string not in the allowed extension list. 2140 */ 2141 foreach ( (array) $parts as $part ) { 2142 $filename .= '.' . $part; 2143 2144 if ( preg_match( '/^[a-zA-Z]{2,5}\d?$/', $part ) ) { 2145 $allowed = false; 2146 foreach ( $mimes as $ext_preg => $mime_match ) { 2147 $ext_preg = '!^(' . $ext_preg . ')$!i'; 2148 if ( preg_match( $ext_preg, $part ) ) { 2149 $allowed = true; 2150 break; 2151 } 2152 } 2153 if ( ! $allowed ) { 2154 $filename .= '_'; 2155 } 2156 } 2157 } 2158 2159 $filename .= '.' . $extension; 2160 2161 /** 2162 * Filters a sanitized filename string. 2163 * 2164 * @since 2.8.0 2165 * 2166 * @param string $filename Sanitized filename. 2167 * @param string $filename_raw The filename prior to sanitization. 2168 */ 2169 return apply_filters( 'sanitize_file_name', $filename, $filename_raw ); 2170 } 2171 2172 /** 2173 * Sanitizes a username, stripping out unsafe characters. 2174 * 2175 * Removes tags, percent-encoded characters, HTML entities, and if strict is enabled, 2176 * will only keep alphanumeric, _, space, ., -, @. After sanitizing, it passes the username, 2177 * raw username (the username in the parameter), and the value of $strict as parameters 2178 * for the {@see 'sanitize_user'} filter. 2179 * 2180 * @since 2.0.0 2181 * 2182 * @param string $username The username to be sanitized. 2183 * @param bool $strict Optional. If set to true, limits $username to specific characters. 2184 * Default false. 2185 * @return string The sanitized username, after passing through filters. 2186 */ 2187 function sanitize_user( $username, $strict = false ) { 2188 $raw_username = $username; 2189 $username = wp_strip_all_tags( $username ); 2190 $username = remove_accents( $username ); 2191 // Remove percent-encoded characters. 2192 $username = preg_replace( '|%([a-fA-F0-9][a-fA-F0-9])|', '', $username ); 2193 // Remove HTML entities. 2194 $username = preg_replace( '/&.+?;/', '', $username ); 2195 2196 // If strict, reduce to ASCII for max portability. 2197 if ( $strict ) { 2198 $username = preg_replace( '|[^a-z0-9 _.\-@]|i', '', $username ); 2199 } 2200 2201 $username = trim( $username ); 2202 // Consolidate contiguous whitespace. 2203 $username = preg_replace( '|\s+|', ' ', $username ); 2204 2205 /** 2206 * Filters a sanitized username string. 2207 * 2208 * @since 2.0.1 2209 * 2210 * @param string $username Sanitized username. 2211 * @param string $raw_username The username prior to sanitization. 2212 * @param bool $strict Whether to limit the sanitization to specific characters. 2213 */ 2214 return apply_filters( 'sanitize_user', $username, $raw_username, $strict ); 2215 } 2216 2217 /** 2218 * Sanitizes a string key. 2219 * 2220 * Keys are used as internal identifiers. Lowercase alphanumeric characters, 2221 * dashes, and underscores are allowed. 2222 * 2223 * @since 3.0.0 2224 * 2225 * @param string $key String key. 2226 * @return string Sanitized key. 2227 */ 2228 function sanitize_key( $key ) { 2229 $sanitized_key = ''; 2230 2231 if ( is_scalar( $key ) ) { 2232 $sanitized_key = strtolower( $key ); 2233 $sanitized_key = preg_replace( '/[^a-z0-9_\-]/', '', $sanitized_key ); 2234 } 2235 2236 /** 2237 * Filters a sanitized key string. 2238 * 2239 * @since 3.0.0 2240 * 2241 * @param string $sanitized_key Sanitized key. 2242 * @param string $key The key prior to sanitization. 2243 */ 2244 return apply_filters( 'sanitize_key', $sanitized_key, $key ); 2245 } 2246 2247 /** 2248 * Sanitizes a string into a slug, which can be used in URLs or HTML attributes. 2249 * 2250 * By default, converts accent characters to ASCII characters and further 2251 * limits the output to alphanumeric characters, underscore (_) and dash (-) 2252 * through the {@see 'sanitize_title'} filter. 2253 * 2254 * If `$title` is empty and `$fallback_title` is set, the latter will be used. 2255 * 2256 * @since 1.0.0 2257 * 2258 * @param string $title The string to be sanitized. 2259 * @param string $fallback_title Optional. A title to use if $title is empty. Default empty. 2260 * @param string $context Optional. The operation for which the string is sanitized. 2261 * When set to 'save', the string runs through remove_accents(). 2262 * Default 'save'. 2263 * @return string The sanitized string. 2264 */ 2265 function sanitize_title( $title, $fallback_title = '', $context = 'save' ) { 2266 $raw_title = $title; 2267 2268 if ( 'save' === $context ) { 2269 $title = remove_accents( $title ); 2270 } 2271 2272 /** 2273 * Filters a sanitized title string. 2274 * 2275 * @since 1.2.0 2276 * 2277 * @param string $title Sanitized title. 2278 * @param string $raw_title The title prior to sanitization. 2279 * @param string $context The context for which the title is being sanitized. 2280 */ 2281 $title = apply_filters( 'sanitize_title', $title, $raw_title, $context ); 2282 2283 if ( '' === $title || false === $title ) { 2284 $title = $fallback_title; 2285 } 2286 2287 return $title; 2288 } 2289 2290 /** 2291 * Sanitizes a title with the 'query' context. 2292 * 2293 * Used for querying the database for a value from URL. 2294 * 2295 * @since 3.1.0 2296 * 2297 * @param string $title The string to be sanitized. 2298 * @return string The sanitized string. 2299 */ 2300 function sanitize_title_for_query( $title ) { 2301 return sanitize_title( $title, '', 'query' ); 2302 } 2303 2304 /** 2305 * Sanitizes a title, replacing whitespace and a few other characters with dashes. 2306 * 2307 * Limits the output to alphanumeric characters, underscore (_) and dash (-). 2308 * Whitespace becomes a dash. 2309 * 2310 * @since 1.2.0 2311 * 2312 * @param string $title The title to be sanitized. 2313 * @param string $raw_title Optional. Not used. Default empty. 2314 * @param string $context Optional. The operation for which the string is sanitized. 2315 * When set to 'save', additional entities are converted to hyphens 2316 * or stripped entirely. Default 'display'. 2317 * @return string The sanitized title. 2318 */ 2319 function sanitize_title_with_dashes( $title, $raw_title = '', $context = 'display' ) { 2320 $title = strip_tags( $title ); 2321 // Preserve escaped octets. 2322 $title = preg_replace( '|%([a-fA-F0-9][a-fA-F0-9])|', '---$1---', $title ); 2323 // Remove percent signs that are not part of an octet. 2324 $title = str_replace( '%', '', $title ); 2325 // Restore octets. 2326 $title = preg_replace( '|---([a-fA-F0-9][a-fA-F0-9])---|', '%$1', $title ); 2327 2328 if ( wp_is_valid_utf8( $title ) ) { 2329 if ( function_exists( 'mb_strtolower' ) ) { 2330 $title = mb_strtolower( $title, 'UTF-8' ); 2331 } 2332 $title = utf8_uri_encode( $title, 200 ); 2333 } 2334 2335 $title = strtolower( $title ); 2336 2337 if ( 'save' === $context ) { 2338 // Convert  , &ndash, and &mdash to hyphens. 2339 $title = str_replace( array( '%c2%a0', '%e2%80%93', '%e2%80%94' ), '-', $title ); 2340 // Convert  , &ndash, and &mdash HTML entities to hyphens. 2341 $title = str_replace( array( ' ', ' ', '–', '–', '—', '—' ), '-', $title ); 2342 // Convert forward slash to hyphen. 2343 $title = str_replace( '/', '-', $title ); 2344 2345 // Strip these characters entirely. 2346 $title = str_replace( 2347 array( 2348 // Soft hyphens. 2349 '%c2%ad', 2350 // ¡ and ¿. 2351 '%c2%a1', 2352 '%c2%bf', 2353 // Angle quotes. 2354 '%c2%ab', 2355 '%c2%bb', 2356 '%e2%80%b9', 2357 '%e2%80%ba', 2358 // Curly quotes. 2359 '%e2%80%98', 2360 '%e2%80%99', 2361 '%e2%80%9c', 2362 '%e2%80%9d', 2363 '%e2%80%9a', 2364 '%e2%80%9b', 2365 '%e2%80%9e', 2366 '%e2%80%9f', 2367 // Bullet. 2368 '%e2%80%a2', 2369 // ©, ®, °, &hellip, and &trade. 2370 '%c2%a9', 2371 '%c2%ae', 2372 '%c2%b0', 2373 '%e2%80%a6', 2374 '%e2%84%a2', 2375 // Acute accents. 2376 '%c2%b4', 2377 '%cb%8a', 2378 '%cc%81', 2379 '%cd%81', 2380 // Grave accent, macron, caron. 2381 '%cc%80', 2382 '%cc%84', 2383 '%cc%8c', 2384 // Non-visible characters that display without a width. 2385 '%e2%80%8b', // Zero width space. 2386 '%e2%80%8c', // Zero width non-joiner. 2387 '%e2%80%8d', // Zero width joiner. 2388 '%e2%80%8e', // Left-to-right mark. 2389 '%e2%80%8f', // Right-to-left mark. 2390 '%e2%80%aa', // Left-to-right embedding. 2391 '%e2%80%ab', // Right-to-left embedding. 2392 '%e2%80%ac', // Pop directional formatting. 2393 '%e2%80%ad', // Left-to-right override. 2394 '%e2%80%ae', // Right-to-left override. 2395 '%ef%bb%bf', // Byte order mark. 2396 '%ef%bf%bc', // Object replacement character. 2397 ), 2398 '', 2399 $title 2400 ); 2401 2402 // Convert non-visible characters that display with a width to hyphen. 2403 $title = str_replace( 2404 array( 2405 '%e2%80%80', // En quad. 2406 '%e2%80%81', // Em quad. 2407 '%e2%80%82', // En space. 2408 '%e2%80%83', // Em space. 2409 '%e2%80%84', // Three-per-em space. 2410 '%e2%80%85', // Four-per-em space. 2411 '%e2%80%86', // Six-per-em space. 2412 '%e2%80%87', // Figure space. 2413 '%e2%80%88', // Punctuation space. 2414 '%e2%80%89', // Thin space. 2415 '%e2%80%8a', // Hair space. 2416 '%e2%80%a8', // Line separator. 2417 '%e2%80%a9', // Paragraph separator. 2418 '%e2%80%af', // Narrow no-break space. 2419 ), 2420 '-', 2421 $title 2422 ); 2423 2424 // Convert × to 'x'. 2425 $title = str_replace( '%c3%97', 'x', $title ); 2426 } 2427 2428 // Remove HTML entities. 2429 $title = preg_replace( '/&.+?;/', '', $title ); 2430 $title = str_replace( '.', '-', $title ); 2431 2432 $title = preg_replace( '/[^%a-z0-9 _-]/', '', $title ); 2433 $title = preg_replace( '/\s+/', '-', $title ); 2434 $title = preg_replace( '|-+|', '-', $title ); 2435 $title = trim( $title, '-' ); 2436 2437 return $title; 2438 } 2439 2440 /** 2441 * Ensures a string is a valid SQL 'order by' clause. 2442 * 2443 * Accepts one or more columns, with or without a sort order (ASC / DESC). 2444 * e.g. 'column_1', 'column_1, column_2', 'column_1 ASC, column_2 DESC' etc. 2445 * 2446 * Also accepts 'RAND()'. 2447 * 2448 * @since 2.5.1 2449 * 2450 * @param string $orderby Order by clause to be validated. 2451 * @return string|false Returns $orderby if valid, false otherwise. 2452 */ 2453 function sanitize_sql_orderby( $orderby ) { 2454 if ( preg_match( '/^\s*(([a-z0-9_]+|`[a-z0-9_]+`)(\s+(ASC|DESC))?\s*(,\s*(?=[a-z0-9_`])|$))+$/i', $orderby ) || preg_match( '/^\s*RAND\(\s*\)\s*$/i', $orderby ) ) { 2455 return $orderby; 2456 } 2457 return false; 2458 } 2459 2460 /** 2461 * Sanitizes an HTML classname to ensure it only contains valid characters. 2462 * 2463 * Strips the string down to A-Z,a-z,0-9,_,-. If this results in an empty 2464 * string then it will return the alternative value supplied. 2465 * 2466 * @todo Expand to support the full range of CDATA that a class attribute can contain. 2467 * 2468 * @since 2.8.0 2469 * 2470 * @param string $classname The classname to be sanitized. 2471 * @param string $fallback Optional. The value to return if the sanitization ends up as an empty string. 2472 * Default empty string. 2473 * @return string The sanitized value. 2474 */ 2475 function sanitize_html_class( $classname, $fallback = '' ) { 2476 // Strip out any percent-encoded characters. 2477 $sanitized = preg_replace( '|%[a-fA-F0-9][a-fA-F0-9]|', '', $classname ); 2478 2479 // Limit to A-Z, a-z, 0-9, '_', '-'. 2480 $sanitized = preg_replace( '/[^A-Za-z0-9_-]/', '', $sanitized ); 2481 2482 if ( '' === $sanitized && $fallback ) { 2483 return sanitize_html_class( $fallback ); 2484 } 2485 /** 2486 * Filters a sanitized HTML class string. 2487 * 2488 * @since 2.8.0 2489 * 2490 * @param string $sanitized The sanitized HTML class. 2491 * @param string $classname HTML class before sanitization. 2492 * @param string $fallback The fallback string. 2493 */ 2494 return apply_filters( 'sanitize_html_class', $sanitized, $classname, $fallback ); 2495 } 2496 2497 /** 2498 * Strips out all characters not allowed in a locale name. 2499 * 2500 * @since 6.2.1 2501 * 2502 * @param string $locale_name The locale name to be sanitized. 2503 * @return string The sanitized value. 2504 */ 2505 function sanitize_locale_name( $locale_name ) { 2506 // Limit to A-Z, a-z, 0-9, '_', '-'. 2507 $sanitized = preg_replace( '/[^A-Za-z0-9_-]/', '', $locale_name ); 2508 2509 /** 2510 * Filters a sanitized locale name string. 2511 * 2512 * @since 6.2.1 2513 * 2514 * @param string $sanitized The sanitized locale name. 2515 * @param string $locale_name The locale name before sanitization. 2516 */ 2517 return apply_filters( 'sanitize_locale_name', $sanitized, $locale_name ); 2518 } 2519 2520 /** 2521 * Converts lone & characters into `&` (a.k.a. `&`) 2522 * 2523 * @since 0.71 2524 * 2525 * @param string $content String of characters to be converted. 2526 * @param string $deprecated Not used. 2527 * @return string Converted string. 2528 */ 2529 function convert_chars( $content, $deprecated = '' ) { 2530 if ( ! empty( $deprecated ) ) { 2531 _deprecated_argument( __FUNCTION__, '0.71' ); 2532 } 2533 2534 if ( str_contains( $content, '&' ) ) { 2535 $content = preg_replace( '/&([^#])(?![a-z1-4]{1,8};)/i', '&$1', $content ); 2536 } 2537 2538 return $content; 2539 } 2540 2541 /** 2542 * Converts invalid Unicode references range to valid range. 2543 * 2544 * @since 4.3.0 2545 * 2546 * @param string $content String with entities that need converting. 2547 * @return string Converted string. 2548 */ 2549 function convert_invalid_entities( $content ) { 2550 $wp_htmltranswinuni = array( 2551 '€' => '€', // The Euro sign. 2552 '' => '', 2553 '‚' => '‚', // These are Windows CP1252 specific characters. 2554 'ƒ' => 'ƒ', // They would look weird on non-Windows browsers. 2555 '„' => '„', 2556 '…' => '…', 2557 '†' => '†', 2558 '‡' => '‡', 2559 'ˆ' => 'ˆ', 2560 '‰' => '‰', 2561 'Š' => 'Š', 2562 '‹' => '‹', 2563 'Œ' => 'Œ', 2564 '' => '', 2565 'Ž' => 'Ž', 2566 '' => '', 2567 '' => '', 2568 '‘' => '‘', 2569 '’' => '’', 2570 '“' => '“', 2571 '”' => '”', 2572 '•' => '•', 2573 '–' => '–', 2574 '—' => '—', 2575 '˜' => '˜', 2576 '™' => '™', 2577 'š' => 'š', 2578 '›' => '›', 2579 'œ' => 'œ', 2580 '' => '', 2581 'ž' => 'ž', 2582 'Ÿ' => 'Ÿ', 2583 ); 2584 2585 if ( str_contains( $content, '' ) ) { 2586 $content = strtr( $content, $wp_htmltranswinuni ); 2587 } 2588 2589 return $content; 2590 } 2591 2592 /** 2593 * Balances tags if forced to, or if the 'use_balanceTags' option is set to true. 2594 * 2595 * @since 0.71 2596 * 2597 * @param string $text Text to be balanced. 2598 * @param bool $force If true, forces balancing, ignoring the value of the option. Default false. 2599 * @return string Balanced text. 2600 */ 2601 function balanceTags( $text, $force = false ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 2602 if ( $force || (int) get_option( 'use_balanceTags' ) === 1 ) { 2603 return force_balance_tags( $text ); 2604 } else { 2605 return $text; 2606 } 2607 } 2608 2609 /** 2610 * Balances tags of string using a modified stack. 2611 * 2612 * {@internal Modified by Scott Reilly (coffee2code) 02 Aug 2004 2613 * 1.1 Fixed handling of append/stack pop order of end text 2614 * Added Cleaning Hooks 2615 * 1.0 First Version} 2616 * 2617 * @since 2.0.4 2618 * @since 5.3.0 Improve accuracy and add support for custom element tags. 2619 * 2620 * @author Leonard Lin <leonard@acm.org> 2621 * @license GPL 2622 * @copyright November 4, 2001 2623 * @version 1.1 2624 * @todo Make better - change loop condition to $text in 1.2 2625 * 2626 * @param string $text Text to be balanced. 2627 * @return string Balanced text. 2628 */ 2629 function force_balance_tags( $text ) { 2630 $tagstack = array(); 2631 $stacksize = 0; 2632 $tagqueue = ''; 2633 $newtext = ''; 2634 // Known single-entity/self-closing tags. 2635 $single_tags = array( 'area', 'base', 'basefont', 'br', 'col', 'command', 'embed', 'frame', 'hr', 'img', 'input', 'isindex', 'link', 'meta', 'param', 'source', 'track', 'wbr' ); 2636 // Tags that can be immediately nested within themselves. 2637 $nestable_tags = array( 'article', 'aside', 'blockquote', 'details', 'div', 'figure', 'object', 'q', 'section', 'span' ); 2638 2639 // WP bug fix for comments - in case you REALLY meant to type '< !--'. 2640 $text = str_replace( '< !--', '< !--', $text ); 2641 // WP bug fix for LOVE <3 (and other situations with '<' before a number). 2642 $text = preg_replace( '#<([0-9]{1})#', '<$1', $text ); 2643 2644 /** 2645 * Matches supported tags. 2646 * 2647 * To get the pattern as a string without the comments paste into a PHP 2648 * REPL like `php -a`. 2649 * 2650 * @see https://html.spec.whatwg.org/#elements-2 2651 * @see https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name 2652 * 2653 * @example 2654 * ~# php -a 2655 * php > $s = [paste copied contents of expression below including parentheses]; 2656 * php > echo $s; 2657 */ 2658 $tag_pattern = ( 2659 '#<' . // Start with an opening bracket. 2660 '(/?)' . // Group 1 - If it's a closing tag it'll have a leading slash. 2661 '(' . // Group 2 - Tag name. 2662 // Custom element tags have more lenient rules than HTML tag names. 2663 '(?:[a-z](?:[a-z0-9._]*)-(?:[a-z0-9._-]+)+)' . 2664 '|' . 2665 // Traditional tag rules approximate HTML tag names. 2666 '(?:[\w:]+)' . 2667 ')' . 2668 '(?:' . 2669 // We either immediately close the tag with its '>' and have nothing here. 2670 '\s*' . 2671 '(/?)' . // Group 3 - "attributes" for empty tag. 2672 '|' . 2673 // Or we must start with space characters to separate the tag name from the attributes (or whitespace). 2674 '(\s+)' . // Group 4 - Pre-attribute whitespace. 2675 '([^>]*)' . // Group 5 - Attributes. 2676 ')' . 2677 '>#' // End with a closing bracket. 2678 ); 2679 2680 while ( preg_match( $tag_pattern, $text, $regex ) ) { 2681 $full_match = $regex[0]; 2682 $has_leading_slash = ! empty( $regex[1] ); 2683 $tag_name = $regex[2]; 2684 $tag = strtolower( $tag_name ); 2685 $is_single_tag = in_array( $tag, $single_tags, true ); 2686 $pre_attribute_ws = isset( $regex[4] ) ? $regex[4] : ''; 2687 $attributes = trim( isset( $regex[5] ) ? $regex[5] : $regex[3] ); 2688 $has_self_closer = str_ends_with( $attributes, '/' ); 2689 2690 $newtext .= $tagqueue; 2691 2692 $i = strpos( $text, $full_match ); 2693 $l = strlen( $full_match ); 2694 2695 // Clear the shifter. 2696 $tagqueue = ''; 2697 if ( $has_leading_slash ) { // End tag. 2698 // If too many closing tags. 2699 if ( $stacksize <= 0 ) { 2700 $tag = ''; 2701 // Or close to be safe $tag = '/' . $tag. 2702 2703 // If stacktop value = tag close value, then pop. 2704 } elseif ( $tagstack[ $stacksize - 1 ] === $tag ) { // Found closing tag. 2705 $tag = '</' . $tag . '>'; // Close tag. 2706 array_pop( $tagstack ); 2707 --$stacksize; 2708 } else { // Closing tag not at top, search for it. 2709 for ( $j = $stacksize - 1; $j >= 0; $j-- ) { 2710 if ( $tagstack[ $j ] === $tag ) { 2711 // Add tag to tagqueue. 2712 for ( $k = $stacksize - 1; $k >= $j; $k-- ) { 2713 $tagqueue .= '</' . array_pop( $tagstack ) . '>'; 2714 --$stacksize; 2715 } 2716 break; 2717 } 2718 } 2719 $tag = ''; 2720 } 2721 } else { // Begin tag. 2722 if ( $has_self_closer ) { 2723 /* 2724 * If it presents itself as a self-closing tag, but it isn't a known single-entity self-closing tag, 2725 * then don't let it be treated as such and immediately close it with a closing tag. 2726 * The tag will encapsulate no text as a result. 2727 */ 2728 if ( ! $is_single_tag ) { 2729 $attributes = trim( substr( $attributes, 0, -1 ) ) . "></$tag"; 2730 } 2731 } elseif ( $is_single_tag ) { 2732 // Else if it's a known single-entity tag but it doesn't close itself, do so. 2733 $pre_attribute_ws = ' '; 2734 $attributes .= '/'; 2735 } else { 2736 /* 2737 * It's not a single-entity tag. 2738 * If the top of the stack is the same as the tag we want to push, close previous tag. 2739 */ 2740 if ( $stacksize > 0 && ! in_array( $tag, $nestable_tags, true ) && $tagstack[ $stacksize - 1 ] === $tag ) { 2741 $tagqueue = '</' . array_pop( $tagstack ) . '>'; 2742 --$stacksize; 2743 } 2744 $stacksize = array_push( $tagstack, $tag ); 2745 } 2746 2747 // Attributes. 2748 if ( $has_self_closer && $is_single_tag ) { 2749 // We need some space - avoid <br/> and prefer <br />. 2750 $pre_attribute_ws = ' '; 2751 } 2752 2753 $tag = '<' . $tag . $pre_attribute_ws . $attributes . '>'; 2754 // If already queuing a close tag, then put this tag on too. 2755 if ( ! empty( $tagqueue ) ) { 2756 $tagqueue .= $tag; 2757 $tag = ''; 2758 } 2759 } 2760 $newtext .= substr( $text, 0, $i ) . $tag; 2761 $text = substr( $text, $i + $l ); 2762 } 2763 2764 // Clear tag queue. 2765 $newtext .= $tagqueue; 2766 2767 // Add remaining text. 2768 $newtext .= $text; 2769 2770 while ( $x = array_pop( $tagstack ) ) { 2771 $newtext .= '</' . $x . '>'; // Add remaining tags to close. 2772 } 2773 2774 // WP fix for the bug with HTML comments. 2775 $newtext = str_replace( '< !--', '<!--', $newtext ); 2776 $newtext = str_replace( '< !--', '< !--', $newtext ); 2777 2778 return $newtext; 2779 } 2780 2781 /** 2782 * Acts on text which is about to be edited. 2783 * 2784 * The $content is run through esc_textarea(), which uses htmlspecialchars() 2785 * to convert special characters to HTML entities. If `$richedit` is set to true, 2786 * it is simply a holder for the {@see 'format_to_edit'} filter. 2787 * 2788 * @since 0.71 2789 * @since 4.4.0 The `$richedit` parameter was renamed to `$rich_text` for clarity. 2790 * 2791 * @param string $content The text about to be edited. 2792 * @param bool $rich_text Optional. Whether `$content` should be considered rich text, 2793 * in which case it would not be passed through esc_textarea(). 2794 * Default false. 2795 * @return string The text after the filter (and possibly htmlspecialchars()) has been run. 2796 */ 2797 function format_to_edit( $content, $rich_text = false ) { 2798 /** 2799 * Filters the text to be formatted for editing. 2800 * 2801 * @since 1.2.0 2802 * 2803 * @param string $content The text, prior to formatting for editing. 2804 */ 2805 $content = apply_filters( 'format_to_edit', $content ); 2806 if ( ! $rich_text ) { 2807 $content = esc_textarea( $content ); 2808 } 2809 return $content; 2810 } 2811 2812 /** 2813 * Add leading zeros when necessary. 2814 * 2815 * If you set the threshold to '4' and the number is '10', then you will get 2816 * back '0010'. If you set the threshold to '4' and the number is '5000', then you 2817 * will get back '5000'. 2818 * 2819 * Uses sprintf to append the amount of zeros based on the $threshold parameter 2820 * and the size of the number. If the number is large enough, then no zeros will 2821 * be appended. 2822 * 2823 * @since 0.71 2824 * 2825 * @param int $number Number to append zeros to if not greater than threshold. 2826 * @param int $threshold Digit places number needs to be to not have zeros added. 2827 * @return string Adds leading zeros to number if needed. 2828 */ 2829 function zeroise( $number, $threshold ) { 2830 return sprintf( '%0' . $threshold . 's', $number ); 2831 } 2832 2833 /** 2834 * Adds backslashes before letters and before a number at the start of a string. 2835 * 2836 * @since 0.71 2837 * 2838 * @param string $value Value to which backslashes will be added. 2839 * @return string String with backslashes inserted. 2840 */ 2841 function backslashit( $value ) { 2842 if ( isset( $value[0] ) && $value[0] >= '0' && $value[0] <= '9' ) { 2843 $value = '\\\\' . $value; 2844 } 2845 return addcslashes( $value, 'A..Za..z' ); 2846 } 2847 2848 /** 2849 * Appends a trailing slash. 2850 * 2851 * Will remove trailing forward and backslashes if it exists already before adding 2852 * a trailing forward slash. This prevents double slashing a string or path. 2853 * 2854 * The primary use of this is for paths and thus should be used for paths. It is 2855 * not restricted to paths and offers no specific path support. 2856 * 2857 * @since 1.2.0 2858 * 2859 * @param string $value Value to which trailing slash will be added. 2860 * @return string String with trailing slash added. 2861 */ 2862 function trailingslashit( $value ) { 2863 return untrailingslashit( $value ) . '/'; 2864 } 2865 2866 /** 2867 * Removes trailing forward slashes and backslashes if they exist. 2868 * 2869 * The primary use of this is for paths and thus should be used for paths. It is 2870 * not restricted to paths and offers no specific path support. 2871 * 2872 * @since 2.2.0 2873 * 2874 * @param string $value Value from which trailing slashes will be removed. 2875 * @return string String without the trailing slashes. 2876 */ 2877 function untrailingslashit( $value ) { 2878 return rtrim( $value, '/\\' ); 2879 } 2880 2881 /** 2882 * Adds slashes to a string or recursively adds slashes to strings within an array. 2883 * 2884 * @since 0.71 2885 * 2886 * @param string|array $gpc String or array of data to slash. 2887 * @return string|array Slashed `$gpc`. 2888 */ 2889 function addslashes_gpc( $gpc ) { 2890 return wp_slash( $gpc ); 2891 } 2892 2893 /** 2894 * Navigates through an array, object, or scalar, and removes slashes from the values. 2895 * 2896 * @since 2.0.0 2897 * 2898 * @param mixed $value The value to be stripped. 2899 * @return mixed Stripped value. 2900 */ 2901 function stripslashes_deep( $value ) { 2902 return map_deep( $value, 'stripslashes_from_strings_only' ); 2903 } 2904 2905 /** 2906 * Callback function for `stripslashes_deep()` which strips slashes from strings. 2907 * 2908 * @since 4.4.0 2909 * 2910 * @param mixed $value The array or string to be stripped. 2911 * @return mixed The stripped value. 2912 */ 2913 function stripslashes_from_strings_only( $value ) { 2914 return is_string( $value ) ? stripslashes( $value ) : $value; 2915 } 2916 2917 /** 2918 * Navigates through an array, object, or scalar, and encodes the values to be used in a URL. 2919 * 2920 * @since 2.2.0 2921 * 2922 * @param mixed $value The array or string to be encoded. 2923 * @return mixed The encoded value. 2924 */ 2925 function urlencode_deep( $value ) { 2926 return map_deep( $value, 'urlencode' ); 2927 } 2928 2929 /** 2930 * Navigates through an array, object, or scalar, and raw-encodes the values to be used in a URL. 2931 * 2932 * @since 3.4.0 2933 * 2934 * @param mixed $value The array or string to be encoded. 2935 * @return mixed The encoded value. 2936 */ 2937 function rawurlencode_deep( $value ) { 2938 return map_deep( $value, 'rawurlencode' ); 2939 } 2940 2941 /** 2942 * Navigates through an array, object, or scalar, and decodes URL-encoded values 2943 * 2944 * @since 4.4.0 2945 * 2946 * @param mixed $value The array or string to be decoded. 2947 * @return mixed The decoded value. 2948 */ 2949 function urldecode_deep( $value ) { 2950 return map_deep( $value, 'urldecode' ); 2951 } 2952 2953 /** 2954 * Converts email addresses characters to HTML entities to block spam bots. 2955 * 2956 * @since 0.71 2957 * 2958 * @param string $email_address Email address. 2959 * @param int $hex_encoding Optional. Set to 1 to enable hex encoding. 2960 * @return string Converted email address. 2961 */ 2962 function antispambot( $email_address, $hex_encoding = 0 ) { 2963 $email_no_spam_address = ''; 2964 2965 for ( $i = 0, $len = strlen( $email_address ); $i < $len; $i++ ) { 2966 $j = rand( 0, 1 + $hex_encoding ); 2967 2968 if ( 0 === $j ) { 2969 $email_no_spam_address .= '&#' . ord( $email_address[ $i ] ) . ';'; 2970 } elseif ( 1 === $j ) { 2971 $email_no_spam_address .= $email_address[ $i ]; 2972 } elseif ( 2 === $j ) { 2973 $email_no_spam_address .= '%' . zeroise( dechex( ord( $email_address[ $i ] ) ), 2 ); 2974 } 2975 } 2976 2977 return str_replace( '@', '@', $email_no_spam_address ); 2978 } 2979 2980 /** 2981 * Callback to convert URI match to HTML A element. 2982 * 2983 * This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable(). 2984 * 2985 * @since 2.3.2 2986 * @access private 2987 * 2988 * @param array $matches Single Regex Match. 2989 * @return string HTML A element with URI address. 2990 */ 2991 function _make_url_clickable_cb( $matches ) { 2992 $url = $matches[2]; 2993 2994 if ( ')' === $matches[3] && strpos( $url, '(' ) ) { 2995 /* 2996 * If the trailing character is a closing parenthesis, and the URL has an opening parenthesis in it, 2997 * add the closing parenthesis to the URL. Then we can let the parenthesis balancer do its thing below. 2998 */ 2999 $url .= $matches[3]; 3000 $suffix = ''; 3001 } else { 3002 $suffix = $matches[3]; 3003 } 3004 3005 if ( isset( $matches[4] ) && ! empty( $matches[4] ) ) { 3006 $url .= $matches[4]; 3007 } 3008 3009 // Include parentheses in the URL only if paired. 3010 while ( substr_count( $url, '(' ) < substr_count( $url, ')' ) ) { 3011 $suffix = strrchr( $url, ')' ) . $suffix; 3012 $url = substr( $url, 0, strrpos( $url, ')' ) ); 3013 } 3014 3015 $url = esc_url( $url ); 3016 if ( empty( $url ) ) { 3017 return $matches[0]; 3018 } 3019 3020 $rel_attr = _make_clickable_rel_attr( $url ); 3021 3022 return $matches[1] . "<a href=\"{$url}\"{$rel_attr}>{$url}</a>" . $suffix; 3023 } 3024 3025 /** 3026 * Callback to convert URL match to HTML A element. 3027 * 3028 * This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable(). 3029 * 3030 * @since 2.3.2 3031 * @access private 3032 * 3033 * @param array $matches Single Regex Match. 3034 * @return string HTML A element with URL address. 3035 */ 3036 function _make_web_ftp_clickable_cb( $matches ) { 3037 $ret = ''; 3038 $dest = $matches[2]; 3039 $dest = 'http://' . $dest; 3040 3041 // Removed trailing [.,;:)] from URL. 3042 $last_char = substr( $dest, -1 ); 3043 if ( in_array( $last_char, array( '.', ',', ';', ':', ')' ), true ) === true ) { 3044 $ret = $last_char; 3045 $dest = substr( $dest, 0, strlen( $dest ) - 1 ); 3046 } 3047 3048 $dest = esc_url( $dest ); 3049 if ( empty( $dest ) ) { 3050 return $matches[0]; 3051 } 3052 3053 $rel_attr = _make_clickable_rel_attr( $dest ); 3054 3055 return $matches[1] . "<a href=\"{$dest}\"{$rel_attr}>{$dest}</a>{$ret}"; 3056 } 3057 3058 /** 3059 * Callback to convert email address match to HTML A element. 3060 * 3061 * This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable(). 3062 * 3063 * @since 2.3.2 3064 * @access private 3065 * 3066 * @param array $matches Single Regex Match. 3067 * @return string HTML A element with email address. 3068 */ 3069 function _make_email_clickable_cb( $matches ) { 3070 $email = $matches[2] . '@' . $matches[3]; 3071 3072 return $matches[1] . "<a href=\"mailto:{$email}\">{$email}</a>"; 3073 } 3074 3075 /** 3076 * Helper function used to build the "rel" attribute for a URL when creating an anchor using make_clickable(). 3077 * 3078 * @since 6.2.0 3079 * 3080 * @param string $url The URL. 3081 * @return string The rel attribute for the anchor or an empty string if no rel attribute should be added. 3082 */ 3083 function _make_clickable_rel_attr( $url ) { 3084 $rel_parts = array(); 3085 $scheme = strtolower( wp_parse_url( $url, PHP_URL_SCHEME ) ); 3086 $nofollow_schemes = array_intersect( wp_allowed_protocols(), array( 'https', 'http' ) ); 3087 3088 // Apply "nofollow" to external links with qualifying URL schemes (mailto:, tel:, etc... shouldn't be followed). 3089 if ( ! wp_is_internal_link( $url ) && in_array( $scheme, $nofollow_schemes, true ) ) { 3090 $rel_parts[] = 'nofollow'; 3091 } 3092 3093 // Apply "ugc" when in comment context. 3094 if ( 'comment_text' === current_filter() ) { 3095 $rel_parts[] = 'ugc'; 3096 } 3097 3098 $rel = implode( ' ', $rel_parts ); 3099 3100 /** 3101 * Filters the rel value that is added to URL matches converted to links. 3102 * 3103 * @since 5.3.0 3104 * 3105 * @param string $rel The rel value. 3106 * @param string $url The matched URL being converted to a link tag. 3107 */ 3108 $rel = apply_filters( 'make_clickable_rel', $rel, $url ); 3109 3110 $rel_attr = $rel ? ' rel="' . esc_attr( $rel ) . '"' : ''; 3111 3112 return $rel_attr; 3113 } 3114 3115 /** 3116 * Converts plaintext URI to HTML links. 3117 * 3118 * Converts URI, www and ftp, and email addresses. Finishes by fixing links 3119 * within links. 3120 * 3121 * @since 0.71 3122 * 3123 * @param string $text Content to convert URIs. 3124 * @return string Content with converted URIs. 3125 */ 3126 function make_clickable( $text ) { 3127 $r = ''; 3128 $textarr = preg_split( '/(<[^<>]+>)/', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); // Split out HTML tags. 3129 $nested_code_pre = 0; // Keep track of how many levels link is nested inside <pre> or <code>. 3130 foreach ( $textarr as $piece ) { 3131 3132 if ( preg_match( '|^<code[\s>]|i', $piece ) 3133 || preg_match( '|^<pre[\s>]|i', $piece ) 3134 || preg_match( '|^<script[\s>]|i', $piece ) 3135 || preg_match( '|^<style[\s>]|i', $piece ) 3136 ) { 3137 ++$nested_code_pre; 3138 } elseif ( $nested_code_pre 3139 && ( '</code>' === strtolower( $piece ) 3140 || '</pre>' === strtolower( $piece ) 3141 || '</script>' === strtolower( $piece ) 3142 || '</style>' === strtolower( $piece ) 3143 ) 3144 ) { 3145 --$nested_code_pre; 3146 } 3147 3148 if ( $nested_code_pre 3149 || empty( $piece ) 3150 || ( '<' === $piece[0] && ! preg_match( '|^<\s*[\w]{1,20}+://|', $piece ) ) 3151 ) { 3152 $r .= $piece; 3153 continue; 3154 } 3155 3156 // Long strings might contain expensive edge cases... 3157 if ( 10000 < strlen( $piece ) ) { 3158 // ...break it up. 3159 foreach ( _split_str_by_whitespace( $piece, 2100 ) as $chunk ) { // 2100: Extra room for scheme and leading and trailing parentheses. 3160 if ( 2101 < strlen( $chunk ) ) { 3161 $r .= $chunk; // Too big, no whitespace: bail. 3162 } else { 3163 $r .= make_clickable( $chunk ); 3164 } 3165 } 3166 } else { 3167 $ret = " $piece "; // Pad with whitespace to simplify the regexes. 3168 3169 $url_clickable = '~ 3170 ([\\s(<.,;:!?]) # 1: Leading whitespace, or punctuation. 3171 ( # 2: URL. 3172 [\\w]{1,20}+:// # Scheme and hier-part prefix. 3173 (?=\S{1,2000}\s) # Limit to URLs less than about 2000 characters long. 3174 [\\w\\x80-\\xff#%\\~/@\\[\\]*(+=&$-]*+ # Non-punctuation URL character. 3175 (?: # Unroll the Loop: Only allow punctuation URL character if followed by a non-punctuation URL character. 3176 [\'.,;:!?)] # Punctuation URL character. 3177 [\\w\\x80-\\xff#%\\~/@\\[\\]*(+=&$-]++ # Non-punctuation URL character. 3178 )* 3179 ) 3180 (\)?) # 3: Trailing closing parenthesis (for parenthesis balancing post processing). 3181 (\\.\\w{2,6})? # 4: Allowing file extensions (e.g., .jpg, .png). 3182 ~xS'; 3183 /* 3184 * The regex is a non-anchored pattern and does not have a single fixed starting character. 3185 * Tell PCRE to spend more time optimizing since, when used on a page load, it will probably be used several times. 3186 */ 3187 3188 $ret = preg_replace_callback( $url_clickable, '_make_url_clickable_cb', $ret ); 3189 3190 $ret = preg_replace_callback( '#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]+)#is', '_make_web_ftp_clickable_cb', $ret ); 3191 $ret = preg_replace_callback( '#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i', '_make_email_clickable_cb', $ret ); 3192 3193 $ret = substr( $ret, 1, -1 ); // Remove our whitespace padding. 3194 $r .= $ret; 3195 } 3196 } 3197 3198 // Cleanup of accidental links within links. 3199 return preg_replace( '#(<a([ \r\n\t]+[^>]+?>|>))<a [^>]+?>([^>]+?)</a></a>#i', '$1$3</a>', $r ); 3200 } 3201 3202 /** 3203 * Breaks a string into chunks by splitting at whitespace characters. 3204 * 3205 * The length of each returned chunk is as close to the specified length goal as possible, 3206 * with the caveat that each chunk includes its trailing delimiter. 3207 * Chunks longer than the goal are guaranteed to not have any inner whitespace. 3208 * 3209 * Joining the returned chunks with empty delimiters reconstructs the input string losslessly. 3210 * 3211 * Input string must have no null characters (or eventual transformations on output chunks must not care about null characters) 3212 * 3213 * _split_str_by_whitespace( "1234 67890 1234 67890a cd 1234 890 123456789 1234567890a 45678 1 3 5 7 90 ", 10 ) == 3214 * array ( 3215 * 0 => '1234 67890 ', // 11 characters: Perfect split. 3216 * 1 => '1234 ', // 5 characters: '1234 67890a' was too long. 3217 * 2 => '67890a cd ', // 10 characters: '67890a cd 1234' was too long. 3218 * 3 => '1234 890 ', // 11 characters: Perfect split. 3219 * 4 => '123456789 ', // 10 characters: '123456789 1234567890a' was too long. 3220 * 5 => '1234567890a ', // 12 characters: Too long, but no inner whitespace on which to split. 3221 * 6 => ' 45678 ', // 11 characters: Perfect split. 3222 * 7 => '1 3 5 7 90 ', // 11 characters: End of $text. 3223 * ); 3224 * 3225 * @since 3.4.0 3226 * @access private 3227 * 3228 * @param string $text The string to split. 3229 * @param int $goal The desired chunk length. 3230 * @return array Numeric array of chunks. 3231 */ 3232 function _split_str_by_whitespace( $text, $goal ) { 3233 $chunks = array(); 3234 3235 $string_nullspace = strtr( $text, "\r\n\t\v\f ", "\000\000\000\000\000\000" ); 3236 3237 while ( $goal < strlen( $string_nullspace ) ) { 3238 $pos = strrpos( substr( $string_nullspace, 0, $goal + 1 ), "\000" ); 3239 3240 if ( false === $pos ) { 3241 $pos = strpos( $string_nullspace, "\000", $goal + 1 ); 3242 if ( false === $pos ) { 3243 break; 3244 } 3245 } 3246 3247 $chunks[] = substr( $text, 0, $pos + 1 ); 3248 $text = substr( $text, $pos + 1 ); 3249 $string_nullspace = substr( $string_nullspace, $pos + 1 ); 3250 } 3251 3252 if ( $text ) { 3253 $chunks[] = $text; 3254 } 3255 3256 return $chunks; 3257 } 3258 3259 /** 3260 * Callback to add a rel attribute to HTML A element. 3261 * 3262 * Will remove already existing string before adding to prevent invalidating (X)HTML. 3263 * 3264 * @since 5.3.0 3265 * 3266 * @param array $matches Single match. 3267 * @param string $rel The rel attribute to add. 3268 * @return string HTML A element with the added rel attribute. 3269 */ 3270 function wp_rel_callback( $matches, $rel ) { 3271 $text = $matches[1]; 3272 $atts = wp_kses_hair( $matches[1], wp_allowed_protocols() ); 3273 3274 if ( ! empty( $atts['href'] ) && wp_is_internal_link( $atts['href']['value'] ) ) { 3275 $rel = trim( str_replace( 'nofollow', '', $rel ) ); 3276 } 3277 3278 if ( ! empty( $atts['rel'] ) ) { 3279 $parts = array_map( 'trim', explode( ' ', $atts['rel']['value'] ) ); 3280 $rel_array = array_map( 'trim', explode( ' ', $rel ) ); 3281 $parts = array_unique( array_merge( $parts, $rel_array ) ); 3282 $rel = implode( ' ', $parts ); 3283 unset( $atts['rel'] ); 3284 3285 $html = ''; 3286 foreach ( $atts as $name => $value ) { 3287 if ( isset( $value['vless'] ) && 'y' === $value['vless'] ) { 3288 $html .= $name . ' '; 3289 } else { 3290 $html .= "{$name}=\"" . esc_attr( $value['value'] ) . '" '; 3291 } 3292 } 3293 $text = trim( $html ); 3294 } 3295 3296 $rel_attr = $rel ? ' rel="' . esc_attr( $rel ) . '"' : ''; 3297 3298 return "<a {$text}{$rel_attr}>"; 3299 } 3300 3301 /** 3302 * Adds `rel="nofollow"` string to all HTML A elements in content. 3303 * 3304 * @since 1.5.0 3305 * 3306 * @param string $text Content that may contain HTML A elements. 3307 * @return string Converted content. 3308 */ 3309 function wp_rel_nofollow( $text ) { 3310 // This is a pre-save filter, so text is already escaped. 3311 $text = stripslashes( $text ); 3312 $text = preg_replace_callback( 3313 '|<a (.+?)>|i', 3314 static function ( $matches ) { 3315 return wp_rel_callback( $matches, 'nofollow' ); 3316 }, 3317 $text 3318 ); 3319 return wp_slash( $text ); 3320 } 3321 3322 /** 3323 * Callback to add `rel="nofollow"` string to HTML A element. 3324 * 3325 * @since 2.3.0 3326 * @deprecated 5.3.0 Use wp_rel_callback() 3327 * 3328 * @param array $matches Single match. 3329 * @return string HTML A Element with `rel="nofollow"`. 3330 */ 3331 function wp_rel_nofollow_callback( $matches ) { 3332 return wp_rel_callback( $matches, 'nofollow' ); 3333 } 3334 3335 /** 3336 * Adds `rel="nofollow ugc"` string to all HTML A elements in content. 3337 * 3338 * @since 5.3.0 3339 * 3340 * @param string $text Content that may contain HTML A elements. 3341 * @return string Converted content. 3342 */ 3343 function wp_rel_ugc( $text ) { 3344 // This is a pre-save filter, so text is already escaped. 3345 $text = stripslashes( $text ); 3346 $text = preg_replace_callback( 3347 '|<a (.+?)>|i', 3348 static function ( $matches ) { 3349 return wp_rel_callback( $matches, 'nofollow ugc' ); 3350 }, 3351 $text 3352 ); 3353 return wp_slash( $text ); 3354 } 3355 3356 /** 3357 * Adds `rel="noopener"` to all HTML A elements that have a target. 3358 * 3359 * @since 5.1.0 3360 * @since 5.6.0 Removed 'noreferrer' relationship. 3361 * @deprecated 6.7.0 3362 * 3363 * @param string $text Content that may contain HTML A elements. 3364 * @return string Converted content. 3365 */ 3366 function wp_targeted_link_rel( $text ) { 3367 _deprecated_function( __FUNCTION__, '6.7.0' ); 3368 3369 // Don't run (more expensive) regex if no links with targets. 3370 if ( stripos( $text, 'target' ) === false || stripos( $text, '<a ' ) === false || is_serialized( $text ) ) { 3371 return $text; 3372 } 3373 3374 $script_and_style_regex = '/<(script|style).*?<\/\\1>/si'; 3375 3376 preg_match_all( $script_and_style_regex, $text, $matches ); 3377 $extra_parts = $matches[0]; 3378 $html_parts = preg_split( $script_and_style_regex, $text ); 3379 3380 foreach ( $html_parts as &$part ) { 3381 $part = preg_replace_callback( '|<a\s([^>]*target\s*=[^>]*)>|i', 'wp_targeted_link_rel_callback', $part ); 3382 } 3383 3384 $text = ''; 3385 for ( $i = 0; $i < count( $html_parts ); $i++ ) { 3386 $text .= $html_parts[ $i ]; 3387 if ( isset( $extra_parts[ $i ] ) ) { 3388 $text .= $extra_parts[ $i ]; 3389 } 3390 } 3391 3392 return $text; 3393 } 3394 3395 /** 3396 * Callback to add `rel="noopener"` string to HTML A element. 3397 * 3398 * Will not duplicate an existing 'noopener' value to avoid invalidating the HTML. 3399 * 3400 * @since 5.1.0 3401 * @since 5.6.0 Removed 'noreferrer' relationship. 3402 * @deprecated 6.7.0 3403 * 3404 * @param array $matches Single match. 3405 * @return string HTML A Element with `rel="noopener"` in addition to any existing values. 3406 */ 3407 function wp_targeted_link_rel_callback( $matches ) { 3408 _deprecated_function( __FUNCTION__, '6.7.0' ); 3409 3410 $link_html = $matches[1]; 3411 $original_link_html = $link_html; 3412 3413 // Consider the HTML escaped if there are no unescaped quotes. 3414 $is_escaped = ! preg_match( '/(^|[^\\\\])[\'"]/', $link_html ); 3415 if ( $is_escaped ) { 3416 // Replace only the quotes so that they are parsable by wp_kses_hair(), leave the rest as is. 3417 $link_html = preg_replace( '/\\\\([\'"])/', '$1', $link_html ); 3418 } 3419 3420 $atts = wp_kses_hair( $link_html, wp_allowed_protocols() ); 3421 3422 /** 3423 * Filters the rel values that are added to links with `target` attribute. 3424 * 3425 * @since 5.1.0 3426 * 3427 * @param string $rel The rel values. 3428 * @param string $link_html The matched content of the link tag including all HTML attributes. 3429 */ 3430 $rel = apply_filters( 'wp_targeted_link_rel', 'noopener', $link_html ); 3431 3432 // Return early if no rel values to be added or if no actual target attribute. 3433 if ( ! $rel || ! isset( $atts['target'] ) ) { 3434 return "<a $original_link_html>"; 3435 } 3436 3437 if ( isset( $atts['rel'] ) ) { 3438 $all_parts = preg_split( '/\s/', "{$atts['rel']['value']} $rel", -1, PREG_SPLIT_NO_EMPTY ); 3439 $rel = implode( ' ', array_unique( $all_parts ) ); 3440 } 3441 3442 $atts['rel']['whole'] = 'rel="' . esc_attr( $rel ) . '"'; 3443 $link_html = implode( ' ', array_column( $atts, 'whole' ) ); 3444 3445 if ( $is_escaped ) { 3446 $link_html = preg_replace( '/[\'"]/', '\\\\$0', $link_html ); 3447 } 3448 3449 return "<a $link_html>"; 3450 } 3451 3452 /** 3453 * Adds all filters modifying the rel attribute of targeted links. 3454 * 3455 * @since 5.1.0 3456 * @deprecated 6.7.0 3457 */ 3458 function wp_init_targeted_link_rel_filters() { 3459 _deprecated_function( __FUNCTION__, '6.7.0' ); 3460 } 3461 3462 /** 3463 * Removes all filters modifying the rel attribute of targeted links. 3464 * 3465 * @since 5.1.0 3466 * @deprecated 6.7.0 3467 */ 3468 function wp_remove_targeted_link_rel_filters() { 3469 _deprecated_function( __FUNCTION__, '6.7.0' ); 3470 } 3471 3472 /** 3473 * Converts one smiley code to the icon graphic file equivalent. 3474 * 3475 * Callback handler for convert_smilies(). 3476 * 3477 * Looks up one smiley code in the $wpsmiliestrans global array and returns an 3478 * `<img>` string for that smiley. 3479 * 3480 * @since 2.8.0 3481 * 3482 * @global array $wpsmiliestrans 3483 * 3484 * @param array $matches Single match. Smiley code to convert to image. 3485 * @return string Image string for smiley. 3486 */ 3487 function translate_smiley( $matches ) { 3488 global $wpsmiliestrans; 3489 3490 if ( count( $matches ) === 0 ) { 3491 return ''; 3492 } 3493 3494 $smiley = trim( reset( $matches ) ); 3495 $img = $wpsmiliestrans[ $smiley ]; 3496 3497 $matches = array(); 3498 $ext = preg_match( '/\.([^.]+)$/', $img, $matches ) ? strtolower( $matches[1] ) : false; 3499 $image_exts = array( 'jpg', 'jpeg', 'jpe', 'gif', 'png', 'webp', 'avif' ); 3500 3501 // Don't convert smilies that aren't images - they're probably emoji. 3502 if ( ! in_array( $ext, $image_exts, true ) ) { 3503 return $img; 3504 } 3505 3506 /** 3507 * Filters the Smiley image URL before it's used in the image element. 3508 * 3509 * @since 2.9.0 3510 * 3511 * @param string $smiley_url URL for the smiley image. 3512 * @param string $img Filename for the smiley image. 3513 * @param string $site_url Site URL, as returned by site_url(). 3514 */ 3515 $src_url = apply_filters( 'smilies_src', includes_url( "images/smilies/$img" ), $img, site_url() ); 3516 3517 return sprintf( '<img src="%s" alt="%s" class="wp-smiley" style="height: 1em; max-height: 1em;" />', esc_url( $src_url ), esc_attr( $smiley ) ); 3518 } 3519 3520 /** 3521 * Converts text equivalent of smilies to images. 3522 * 3523 * Will only convert smilies if the option 'use_smilies' is true and the global 3524 * used in the function isn't empty. 3525 * 3526 * @since 0.71 3527 * 3528 * @global string|array $wp_smiliessearch 3529 * 3530 * @param string $text Content to convert smilies from text. 3531 * @return string Converted content with text smilies replaced with images. 3532 */ 3533 function convert_smilies( $text ) { 3534 global $wp_smiliessearch; 3535 3536 if ( ! get_option( 'use_smilies' ) || empty( $wp_smiliessearch ) ) { 3537 // Return default text. 3538 return $text; 3539 } 3540 3541 // HTML loop taken from texturize function, could possible be consolidated. 3542 $textarr = preg_split( '/(<[^>]*>)/U', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); // Capture the tags as well as in between. 3543 3544 if ( false === $textarr ) { 3545 // Return default text. 3546 return $text; 3547 } 3548 3549 // Loop stuff. 3550 $stop = count( $textarr ); 3551 $output = ''; 3552 3553 // Ignore processing of specific tags. 3554 $tags_to_ignore = 'code|pre|style|script|textarea'; 3555 $ignore_block_element = ''; 3556 3557 for ( $i = 0; $i < $stop; $i++ ) { 3558 $content = $textarr[ $i ]; 3559 3560 // If we're in an ignore block, wait until we find its closing tag. 3561 if ( '' === $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')[^>]*>/', $content, $matches ) ) { 3562 $ignore_block_element = $matches[1]; 3563 } 3564 3565 // If it's not a tag and not in ignore block. 3566 if ( '' === $ignore_block_element && strlen( $content ) > 0 && '<' !== $content[0] ) { 3567 $content = preg_replace_callback( $wp_smiliessearch, 'translate_smiley', $content ); 3568 } 3569 3570 // Did we exit ignore block? 3571 if ( '' !== $ignore_block_element && '</' . $ignore_block_element . '>' === $content ) { 3572 $ignore_block_element = ''; 3573 } 3574 3575 $output .= $content; 3576 } 3577 3578 return $output; 3579 } 3580 3581 /** 3582 * Verifies that an email is valid. 3583 * 3584 * Does not grok i18n domains. Not RFC compliant. 3585 * 3586 * @since 0.71 3587 * 3588 * @param string $email Email address to verify. 3589 * @param bool $deprecated Deprecated. 3590 * @return string|false Valid email address on success, false on failure. 3591 */ 3592 function is_email( $email, $deprecated = false ) { 3593 if ( ! empty( $deprecated ) ) { 3594 _deprecated_argument( __FUNCTION__, '3.0.0' ); 3595 } 3596 3597 // Test for the minimum length the email can be. 3598 if ( strlen( $email ) < 6 ) { 3599 /** 3600 * Filters whether an email address is valid. 3601 * 3602 * This filter is evaluated under several different contexts, such as 'email_too_short', 3603 * 'email_no_at', 'local_invalid_chars', 'domain_period_sequence', 'domain_period_limits', 3604 * 'domain_no_periods', 'sub_hyphen_limits', 'sub_invalid_chars', or no specific context. 3605 * 3606 * @since 2.8.0 3607 * 3608 * @param string|false $is_email The email address if successfully passed the is_email() checks, false otherwise. 3609 * @param string $email The email address being checked. 3610 * @param string $context Context under which the email was tested. 3611 */ 3612 return apply_filters( 'is_email', false, $email, 'email_too_short' ); 3613 } 3614 3615 // Test for an @ character after the first position. 3616 if ( strpos( $email, '@', 1 ) === false ) { 3617 /** This filter is documented in wp-includes/formatting.php */ 3618 return apply_filters( 'is_email', false, $email, 'email_no_at' ); 3619 } 3620 3621 // Split out the local and domain parts. 3622 list( $local, $domain ) = explode( '@', $email, 2 ); 3623 3624 /* 3625 * LOCAL PART 3626 * Test for invalid characters. 3627 */ 3628 if ( ! preg_match( '/^[a-zA-Z0-9!#$%&\'*+\/=?^_`{|}~\.-]+$/', $local ) ) { 3629 /** This filter is documented in wp-includes/formatting.php */ 3630 return apply_filters( 'is_email', false, $email, 'local_invalid_chars' ); 3631 } 3632 3633 /* 3634 * DOMAIN PART 3635 * Test for sequences of periods. 3636 */ 3637 if ( preg_match( '/\.{2,}/', $domain ) ) { 3638 /** This filter is documented in wp-includes/formatting.php */ 3639 return apply_filters( 'is_email', false, $email, 'domain_period_sequence' ); 3640 } 3641 3642 // Test for leading and trailing periods and whitespace. 3643 if ( trim( $domain, " \t\n\r\0\x0B." ) !== $domain ) { 3644 /** This filter is documented in wp-includes/formatting.php */ 3645 return apply_filters( 'is_email', false, $email, 'domain_period_limits' ); 3646 } 3647 3648 // Split the domain into subs. 3649 $subs = explode( '.', $domain ); 3650 3651 // Assume the domain will have at least two subs. 3652 if ( 2 > count( $subs ) ) { 3653 /** This filter is documented in wp-includes/formatting.php */ 3654 return apply_filters( 'is_email', false, $email, 'domain_no_periods' ); 3655 } 3656 3657 // Loop through each sub. 3658 foreach ( $subs as $sub ) { 3659 // Test for leading and trailing hyphens and whitespace. 3660 if ( trim( $sub, " \t\n\r\0\x0B-" ) !== $sub ) { 3661 /** This filter is documented in wp-includes/formatting.php */ 3662 return apply_filters( 'is_email', false, $email, 'sub_hyphen_limits' ); 3663 } 3664 3665 // Test for invalid characters. 3666 if ( ! preg_match( '/^[a-z0-9-]+$/i', $sub ) ) { 3667 /** This filter is documented in wp-includes/formatting.php */ 3668 return apply_filters( 'is_email', false, $email, 'sub_invalid_chars' ); 3669 } 3670 } 3671 3672 // Congratulations, your email made it! 3673 /** This filter is documented in wp-includes/formatting.php */ 3674 return apply_filters( 'is_email', $email, $email, null ); 3675 } 3676 3677 /** 3678 * Converts to ASCII from email subjects. 3679 * 3680 * @since 1.2.0 3681 * 3682 * @param string $subject Subject line. 3683 * @return string Converted string to ASCII. 3684 */ 3685 function wp_iso_descrambler( $subject ) { 3686 /* this may only work with iso-8859-1, I'm afraid */ 3687 if ( ! preg_match( '#\=\?(.+)\?Q\?(.+)\?\=#i', $subject, $matches ) ) { 3688 return $subject; 3689 } 3690 3691 $subject = str_replace( '_', ' ', $matches[2] ); 3692 return preg_replace_callback( '#\=([0-9a-f]{2})#i', '_wp_iso_convert', $subject ); 3693 } 3694 3695 /** 3696 * Helper function to convert hex encoded chars to ASCII. 3697 * 3698 * @since 3.1.0 3699 * @access private 3700 * 3701 * @param array $matches The preg_replace_callback matches array. 3702 * @return string Converted chars. 3703 */ 3704 function _wp_iso_convert( $matches ) { 3705 return chr( hexdec( strtolower( $matches[1] ) ) ); 3706 } 3707 3708 /** 3709 * Given a date in the timezone of the site, returns that date in UTC. 3710 * 3711 * Requires and returns a date in the Y-m-d H:i:s format. 3712 * Return format can be overridden using the $format parameter. 3713 * 3714 * @since 1.2.0 3715 * 3716 * @param string $date_string The date to be converted, in the timezone of the site. 3717 * @param string $format The format string for the returned date. Default 'Y-m-d H:i:s'. 3718 * @return string Formatted version of the date, in UTC. 3719 */ 3720 function get_gmt_from_date( $date_string, $format = 'Y-m-d H:i:s' ) { 3721 $datetime = date_create( $date_string, wp_timezone() ); 3722 3723 if ( false === $datetime ) { 3724 return gmdate( $format, 0 ); 3725 } 3726 3727 return $datetime->setTimezone( new DateTimeZone( 'UTC' ) )->format( $format ); 3728 } 3729 3730 /** 3731 * Given a date in UTC or GMT timezone, returns that date in the timezone of the site. 3732 * 3733 * Requires a date in the Y-m-d H:i:s format. 3734 * Default return format of 'Y-m-d H:i:s' can be overridden using the `$format` parameter. 3735 * 3736 * @since 1.2.0 3737 * 3738 * @param string $date_string The date to be converted, in UTC or GMT timezone. 3739 * @param string $format The format string for the returned date. Default 'Y-m-d H:i:s'. 3740 * @return string Formatted version of the date, in the site's timezone. 3741 */ 3742 function get_date_from_gmt( $date_string, $format = 'Y-m-d H:i:s' ) { 3743 $datetime = date_create( $date_string, new DateTimeZone( 'UTC' ) ); 3744 3745 if ( false === $datetime ) { 3746 return gmdate( $format, 0 ); 3747 } 3748 3749 return $datetime->setTimezone( wp_timezone() )->format( $format ); 3750 } 3751 3752 /** 3753 * Given an ISO 8601 timezone, returns its UTC offset in seconds. 3754 * 3755 * @since 1.5.0 3756 * 3757 * @param string $timezone Either 'Z' for 0 offset or '±hhmm'. 3758 * @return int|float The offset in seconds. 3759 */ 3760 function iso8601_timezone_to_offset( $timezone ) { 3761 // $timezone is either 'Z' or '[+|-]hhmm'. 3762 if ( 'Z' === $timezone ) { 3763 $offset = 0; 3764 } else { 3765 $sign = ( str_starts_with( $timezone, '+' ) ) ? 1 : -1; 3766 $hours = (int) substr( $timezone, 1, 2 ); 3767 $minutes = (int) substr( $timezone, 3, 4 ) / 60; 3768 $offset = $sign * HOUR_IN_SECONDS * ( $hours + $minutes ); 3769 } 3770 return $offset; 3771 } 3772 3773 /** 3774 * Given an ISO 8601 (Ymd\TH:i:sO) date, returns a MySQL DateTime (Y-m-d H:i:s) format used by post_date[_gmt]. 3775 * 3776 * @since 1.5.0 3777 * 3778 * @param string $date_string Date and time in ISO 8601 format {@link https://en.wikipedia.org/wiki/ISO_8601}. 3779 * @param string $timezone Optional. If set to 'gmt' returns the result in UTC. Default 'user'. 3780 * @return string|false The date and time in MySQL DateTime format - Y-m-d H:i:s, or false on failure. 3781 */ 3782 function iso8601_to_datetime( $date_string, $timezone = 'user' ) { 3783 $timezone = strtolower( $timezone ); 3784 $wp_timezone = wp_timezone(); 3785 $datetime = date_create( $date_string, $wp_timezone ); // Timezone is ignored if input has one. 3786 3787 if ( false === $datetime ) { 3788 return false; 3789 } 3790 3791 if ( 'gmt' === $timezone ) { 3792 return $datetime->setTimezone( new DateTimeZone( 'UTC' ) )->format( 'Y-m-d H:i:s' ); 3793 } 3794 3795 if ( 'user' === $timezone ) { 3796 return $datetime->setTimezone( $wp_timezone )->format( 'Y-m-d H:i:s' ); 3797 } 3798 3799 return false; 3800 } 3801 3802 /** 3803 * Strips out all characters that are not allowable in an email. 3804 * 3805 * @since 1.5.0 3806 * 3807 * @param string $email Email address to filter. 3808 * @return string Filtered email address. 3809 */ 3810 function sanitize_email( $email ) { 3811 // Test for the minimum length the email can be. 3812 if ( strlen( $email ) < 6 ) { 3813 /** 3814 * Filters a sanitized email address. 3815 * 3816 * This filter is evaluated under several contexts, including 'email_too_short', 3817 * 'email_no_at', 'local_invalid_chars', 'domain_period_sequence', 'domain_period_limits', 3818 * 'domain_no_periods', 'domain_no_valid_subs', or no context. 3819 * 3820 * @since 2.8.0 3821 * 3822 * @param string $sanitized_email The sanitized email address. 3823 * @param string $email The email address, as provided to sanitize_email(). 3824 * @param string|null $message A message to pass to the user. null if email is sanitized. 3825 */ 3826 return apply_filters( 'sanitize_email', '', $email, 'email_too_short' ); 3827 } 3828 3829 // Test for an @ character after the first position. 3830 if ( strpos( $email, '@', 1 ) === false ) { 3831 /** This filter is documented in wp-includes/formatting.php */ 3832 return apply_filters( 'sanitize_email', '', $email, 'email_no_at' ); 3833 } 3834 3835 // Split out the local and domain parts. 3836 list( $local, $domain ) = explode( '@', $email, 2 ); 3837 3838 /* 3839 * LOCAL PART 3840 * Test for invalid characters. 3841 */ 3842 $local = preg_replace( '/[^a-zA-Z0-9!#$%&\'*+\/=?^_`{|}~\.-]/', '', $local ); 3843 if ( '' === $local ) { 3844 /** This filter is documented in wp-includes/formatting.php */ 3845 return apply_filters( 'sanitize_email', '', $email, 'local_invalid_chars' ); 3846 } 3847 3848 /* 3849 * DOMAIN PART 3850 * Test for sequences of periods. 3851 */ 3852 $domain = preg_replace( '/\.{2,}/', '', $domain ); 3853 if ( '' === $domain ) { 3854 /** This filter is documented in wp-includes/formatting.php */ 3855 return apply_filters( 'sanitize_email', '', $email, 'domain_period_sequence' ); 3856 } 3857 3858 // Test for leading and trailing periods and whitespace. 3859 $domain = trim( $domain, " \t\n\r\0\x0B." ); 3860 if ( '' === $domain ) { 3861 /** This filter is documented in wp-includes/formatting.php */ 3862 return apply_filters( 'sanitize_email', '', $email, 'domain_period_limits' ); 3863 } 3864 3865 // Split the domain into subs. 3866 $subs = explode( '.', $domain ); 3867 3868 // Assume the domain will have at least two subs. 3869 if ( 2 > count( $subs ) ) { 3870 /** This filter is documented in wp-includes/formatting.php */ 3871 return apply_filters( 'sanitize_email', '', $email, 'domain_no_periods' ); 3872 } 3873 3874 // Create an array that will contain valid subs. 3875 $new_subs = array(); 3876 3877 // Loop through each sub. 3878 foreach ( $subs as $sub ) { 3879 // Test for leading and trailing hyphens. 3880 $sub = trim( $sub, " \t\n\r\0\x0B-" ); 3881 3882 // Test for invalid characters. 3883 $sub = preg_replace( '/[^a-z0-9-]+/i', '', $sub ); 3884 3885 // If there's anything left, add it to the valid subs. 3886 if ( '' !== $sub ) { 3887 $new_subs[] = $sub; 3888 } 3889 } 3890 3891 // If there aren't 2 or more valid subs. 3892 if ( 2 > count( $new_subs ) ) { 3893 /** This filter is documented in wp-includes/formatting.php */ 3894 return apply_filters( 'sanitize_email', '', $email, 'domain_no_valid_subs' ); 3895 } 3896 3897 // Join valid subs into the new domain. 3898 $domain = implode( '.', $new_subs ); 3899 3900 // Put the email back together. 3901 $sanitized_email = $local . '@' . $domain; 3902 3903 // Congratulations, your email made it! 3904 /** This filter is documented in wp-includes/formatting.php */ 3905 return apply_filters( 'sanitize_email', $sanitized_email, $email, null ); 3906 } 3907 3908 /** 3909 * Determines the difference between two timestamps. 3910 * 3911 * The difference is returned in a human-readable format such as "1 hour", 3912 * "5 minutes", "2 days". 3913 * 3914 * @since 1.5.0 3915 * @since 5.3.0 Added support for showing a difference in seconds. 3916 * 3917 * @param int $from Unix timestamp from which the difference begins. 3918 * @param int $to Optional. Unix timestamp to end the time difference. Default becomes time() if not set. 3919 * @return string Human-readable time difference. 3920 */ 3921 function human_time_diff( $from, $to = 0 ) { 3922 if ( empty( $to ) ) { 3923 $to = time(); 3924 } 3925 3926 $diff = (int) abs( $to - $from ); 3927 3928 if ( $diff < MINUTE_IN_SECONDS ) { 3929 $secs = $diff; 3930 if ( $secs <= 1 ) { 3931 $secs = 1; 3932 } 3933 /* translators: Time difference between two dates, in seconds. %s: Number of seconds. */ 3934 $since = sprintf( _n( '%s second', '%s seconds', $secs ), $secs ); 3935 } elseif ( $diff < HOUR_IN_SECONDS && $diff >= MINUTE_IN_SECONDS ) { 3936 $mins = round( $diff / MINUTE_IN_SECONDS ); 3937 if ( $mins <= 1 ) { 3938 $mins = 1; 3939 } 3940 /* translators: Time difference between two dates, in minutes. %s: Number of minutes. */ 3941 $since = sprintf( _n( '%s minute', '%s minutes', $mins ), $mins ); 3942 } elseif ( $diff < DAY_IN_SECONDS && $diff >= HOUR_IN_SECONDS ) { 3943 $hours = round( $diff / HOUR_IN_SECONDS ); 3944 if ( $hours <= 1 ) { 3945 $hours = 1; 3946 } 3947 /* translators: Time difference between two dates, in hours. %s: Number of hours. */ 3948 $since = sprintf( _n( '%s hour', '%s hours', $hours ), $hours ); 3949 } elseif ( $diff < WEEK_IN_SECONDS && $diff >= DAY_IN_SECONDS ) { 3950 $days = round( $diff / DAY_IN_SECONDS ); 3951 if ( $days <= 1 ) { 3952 $days = 1; 3953 } 3954 /* translators: Time difference between two dates, in days. %s: Number of days. */ 3955 $since = sprintf( _n( '%s day', '%s days', $days ), $days ); 3956 } elseif ( $diff < MONTH_IN_SECONDS && $diff >= WEEK_IN_SECONDS ) { 3957 $weeks = round( $diff / WEEK_IN_SECONDS ); 3958 if ( $weeks <= 1 ) { 3959 $weeks = 1; 3960 } 3961 /* translators: Time difference between two dates, in weeks. %s: Number of weeks. */ 3962 $since = sprintf( _n( '%s week', '%s weeks', $weeks ), $weeks ); 3963 } elseif ( $diff < YEAR_IN_SECONDS && $diff >= MONTH_IN_SECONDS ) { 3964 $months = round( $diff / MONTH_IN_SECONDS ); 3965 if ( $months <= 1 ) { 3966 $months = 1; 3967 } 3968 /* translators: Time difference between two dates, in months. %s: Number of months. */ 3969 $since = sprintf( _n( '%s month', '%s months', $months ), $months ); 3970 } elseif ( $diff >= YEAR_IN_SECONDS ) { 3971 $years = round( $diff / YEAR_IN_SECONDS ); 3972 if ( $years <= 1 ) { 3973 $years = 1; 3974 } 3975 /* translators: Time difference between two dates, in years. %s: Number of years. */ 3976 $since = sprintf( _n( '%s year', '%s years', $years ), $years ); 3977 } 3978 3979 /** 3980 * Filters the human-readable difference between two timestamps. 3981 * 3982 * @since 4.0.0 3983 * 3984 * @param string $since The difference in human-readable text. 3985 * @param int $diff The difference in seconds. 3986 * @param int $from Unix timestamp from which the difference begins. 3987 * @param int $to Unix timestamp to end the time difference. 3988 */ 3989 return apply_filters( 'human_time_diff', $since, $diff, $from, $to ); 3990 } 3991 3992 /** 3993 * Generates an excerpt from the content, if needed. 3994 * 3995 * Returns a maximum of 55 words with an ellipsis appended if necessary. 3996 * 3997 * The 55-word limit can be modified by plugins/themes using the {@see 'excerpt_length'} filter 3998 * The ' […]' string can be modified by plugins/themes using the {@see 'excerpt_more'} filter 3999 * 4000 * @since 1.5.0 4001 * @since 5.2.0 Added the `$post` parameter. 4002 * @since 6.3.0 Removes footnotes markup from the excerpt content. 4003 * 4004 * @param string $text Optional. The excerpt. If set to empty, an excerpt is generated. 4005 * @param WP_Post|object|int $post Optional. WP_Post instance or Post ID/object. Default null. 4006 * @return string The excerpt. 4007 */ 4008 function wp_trim_excerpt( $text = '', $post = null ) { 4009 $raw_excerpt = $text; 4010 4011 if ( '' === trim( $text ) ) { 4012 $post = get_post( $post ); 4013 $text = get_the_content( '', false, $post ); 4014 4015 $text = strip_shortcodes( $text ); 4016 $text = excerpt_remove_blocks( $text ); 4017 $text = excerpt_remove_footnotes( $text ); 4018 4019 /* 4020 * Temporarily unhook wp_filter_content_tags() since any tags 4021 * within the excerpt are stripped out. Modifying the tags here 4022 * is wasteful and can lead to bugs in the image counting logic. 4023 */ 4024 $filter_image_removed = remove_filter( 'the_content', 'wp_filter_content_tags', 12 ); 4025 4026 /* 4027 * Temporarily unhook do_blocks() since excerpt_remove_blocks( $text ) 4028 * handles block rendering needed for excerpt. 4029 */ 4030 $filter_block_removed = remove_filter( 'the_content', 'do_blocks', 9 ); 4031 4032 /** This filter is documented in wp-includes/post-template.php */ 4033 $text = apply_filters( 'the_content', $text ); 4034 $text = str_replace( ']]>', ']]>', $text ); 4035 4036 // Restore the original filter if removed. 4037 if ( $filter_block_removed ) { 4038 add_filter( 'the_content', 'do_blocks', 9 ); 4039 } 4040 4041 /* 4042 * Only restore the filter callback if it was removed above. The logic 4043 * to unhook and restore only applies on the default priority of 10, 4044 * which is generally used for the filter callback in WordPress core. 4045 */ 4046 if ( $filter_image_removed ) { 4047 add_filter( 'the_content', 'wp_filter_content_tags', 12 ); 4048 } 4049 4050 /* translators: Maximum number of words used in a post excerpt. */ 4051 $excerpt_length = (int) _x( '55', 'excerpt_length' ); 4052 4053 /** 4054 * Filters the maximum number of words in a post excerpt. 4055 * 4056 * @since 2.7.0 4057 * 4058 * @param int $number The maximum number of words. Default 55. 4059 */ 4060 $excerpt_length = (int) apply_filters( 'excerpt_length', $excerpt_length ); 4061 4062 /** 4063 * Filters the string in the "more" link displayed after a trimmed excerpt. 4064 * 4065 * @since 2.9.0 4066 * 4067 * @param string $more_string The string shown within the more link. 4068 */ 4069 $excerpt_more = apply_filters( 'excerpt_more', ' ' . '[…]' ); 4070 $text = wp_trim_words( $text, $excerpt_length, $excerpt_more ); 4071 4072 } 4073 4074 /** 4075 * Filters the trimmed excerpt string. 4076 * 4077 * @since 2.8.0 4078 * 4079 * @param string $text The trimmed text. 4080 * @param string $raw_excerpt The text prior to trimming. 4081 */ 4082 return apply_filters( 'wp_trim_excerpt', $text, $raw_excerpt ); 4083 } 4084 4085 /** 4086 * Trims text to a certain number of words. 4087 * 4088 * This function is localized. For languages that count 'words' by the individual 4089 * character (such as East Asian languages), the $num_words argument will apply 4090 * to the number of individual characters. 4091 * 4092 * @since 3.3.0 4093 * 4094 * @param string $text Text to trim. 4095 * @param int $num_words Number of words. Default 55. 4096 * @param string $more Optional. What to append if $text needs to be trimmed. Default '…'. 4097 * @return string Trimmed text. 4098 */ 4099 function wp_trim_words( $text, $num_words = 55, $more = null ) { 4100 if ( null === $more ) { 4101 $more = __( '…' ); 4102 } 4103 4104 $original_text = $text; 4105 $text = wp_strip_all_tags( $text ); 4106 $num_words = (int) $num_words; 4107 4108 if ( str_starts_with( wp_get_word_count_type(), 'characters' ) && preg_match( '/^utf\-?8$/i', get_option( 'blog_charset' ) ) ) { 4109 $text = trim( preg_replace( "/[\n\r\t ]+/", ' ', $text ), ' ' ); 4110 preg_match_all( '/./u', $text, $words_array ); 4111 $words_array = array_slice( $words_array[0], 0, $num_words + 1 ); 4112 $sep = ''; 4113 } else { 4114 $words_array = preg_split( "/[\n\r\t ]+/", $text, $num_words + 1, PREG_SPLIT_NO_EMPTY ); 4115 $sep = ' '; 4116 } 4117 4118 if ( count( $words_array ) > $num_words ) { 4119 array_pop( $words_array ); 4120 $text = implode( $sep, $words_array ); 4121 $text = $text . $more; 4122 } else { 4123 $text = implode( $sep, $words_array ); 4124 } 4125 4126 /** 4127 * Filters the text content after words have been trimmed. 4128 * 4129 * @since 3.3.0 4130 * 4131 * @param string $text The trimmed text. 4132 * @param int $num_words The number of words to trim the text to. Default 55. 4133 * @param string $more An optional string to append to the end of the trimmed text, e.g. …. 4134 * @param string $original_text The text before it was trimmed. 4135 */ 4136 return apply_filters( 'wp_trim_words', $text, $num_words, $more, $original_text ); 4137 } 4138 4139 /** 4140 * Converts named entities into numbered entities. 4141 * 4142 * @since 1.5.1 4143 * 4144 * @param string $text The text within which entities will be converted. 4145 * @return string Text with converted entities. 4146 */ 4147 function ent2ncr( $text ) { 4148 4149 /** 4150 * Filters text before named entities are converted into numbered entities. 4151 * 4152 * A non-null string must be returned for the filter to be evaluated. 4153 * 4154 * @since 3.3.0 4155 * 4156 * @param string|null $converted_text The text to be converted. Default null. 4157 * @param string $text The text prior to entity conversion. 4158 */ 4159 $filtered = apply_filters( 'pre_ent2ncr', null, $text ); 4160 if ( null !== $filtered ) { 4161 return $filtered; 4162 } 4163 4164 $to_ncr = array( 4165 '"' => '"', 4166 '&' => '&', 4167 '<' => '<', 4168 '>' => '>', 4169 '|' => '|', 4170 ' ' => ' ', 4171 '¡' => '¡', 4172 '¢' => '¢', 4173 '£' => '£', 4174 '¤' => '¤', 4175 '¥' => '¥', 4176 '¦' => '¦', 4177 '&brkbar;' => '¦', 4178 '§' => '§', 4179 '¨' => '¨', 4180 '¨' => '¨', 4181 '©' => '©', 4182 'ª' => 'ª', 4183 '«' => '«', 4184 '¬' => '¬', 4185 '­' => '­', 4186 '®' => '®', 4187 '¯' => '¯', 4188 '&hibar;' => '¯', 4189 '°' => '°', 4190 '±' => '±', 4191 '²' => '²', 4192 '³' => '³', 4193 '´' => '´', 4194 'µ' => 'µ', 4195 '¶' => '¶', 4196 '·' => '·', 4197 '¸' => '¸', 4198 '¹' => '¹', 4199 'º' => 'º', 4200 '»' => '»', 4201 '¼' => '¼', 4202 '½' => '½', 4203 '¾' => '¾', 4204 '¿' => '¿', 4205 'À' => 'À', 4206 'Á' => 'Á', 4207 'Â' => 'Â', 4208 'Ã' => 'Ã', 4209 'Ä' => 'Ä', 4210 'Å' => 'Å', 4211 'Æ' => 'Æ', 4212 'Ç' => 'Ç', 4213 'È' => 'È', 4214 'É' => 'É', 4215 'Ê' => 'Ê', 4216 'Ë' => 'Ë', 4217 'Ì' => 'Ì', 4218 'Í' => 'Í', 4219 'Î' => 'Î', 4220 'Ï' => 'Ï', 4221 'Ð' => 'Ð', 4222 'Ñ' => 'Ñ', 4223 'Ò' => 'Ò', 4224 'Ó' => 'Ó', 4225 'Ô' => 'Ô', 4226 'Õ' => 'Õ', 4227 'Ö' => 'Ö', 4228 '×' => '×', 4229 'Ø' => 'Ø', 4230 'Ù' => 'Ù', 4231 'Ú' => 'Ú', 4232 'Û' => 'Û', 4233 'Ü' => 'Ü', 4234 'Ý' => 'Ý', 4235 'Þ' => 'Þ', 4236 'ß' => 'ß', 4237 'à' => 'à', 4238 'á' => 'á', 4239 'â' => 'â', 4240 'ã' => 'ã', 4241 'ä' => 'ä', 4242 'å' => 'å', 4243 'æ' => 'æ', 4244 'ç' => 'ç', 4245 'è' => 'è', 4246 'é' => 'é', 4247 'ê' => 'ê', 4248 'ë' => 'ë', 4249 'ì' => 'ì', 4250 'í' => 'í', 4251 'î' => 'î', 4252 'ï' => 'ï', 4253 'ð' => 'ð', 4254 'ñ' => 'ñ', 4255 'ò' => 'ò', 4256 'ó' => 'ó', 4257 'ô' => 'ô', 4258 'õ' => 'õ', 4259 'ö' => 'ö', 4260 '÷' => '÷', 4261 'ø' => 'ø', 4262 'ù' => 'ù', 4263 'ú' => 'ú', 4264 'û' => 'û', 4265 'ü' => 'ü', 4266 'ý' => 'ý', 4267 'þ' => 'þ', 4268 'ÿ' => 'ÿ', 4269 'Œ' => 'Œ', 4270 'œ' => 'œ', 4271 'Š' => 'Š', 4272 'š' => 'š', 4273 'Ÿ' => 'Ÿ', 4274 'ƒ' => 'ƒ', 4275 'ˆ' => 'ˆ', 4276 '˜' => '˜', 4277 'Α' => 'Α', 4278 'Β' => 'Β', 4279 'Γ' => 'Γ', 4280 'Δ' => 'Δ', 4281 'Ε' => 'Ε', 4282 'Ζ' => 'Ζ', 4283 'Η' => 'Η', 4284 'Θ' => 'Θ', 4285 'Ι' => 'Ι', 4286 'Κ' => 'Κ', 4287 'Λ' => 'Λ', 4288 'Μ' => 'Μ', 4289 'Ν' => 'Ν', 4290 'Ξ' => 'Ξ', 4291 'Ο' => 'Ο', 4292 'Π' => 'Π', 4293 'Ρ' => 'Ρ', 4294 'Σ' => 'Σ', 4295 'Τ' => 'Τ', 4296 'Υ' => 'Υ', 4297 'Φ' => 'Φ', 4298 'Χ' => 'Χ', 4299 'Ψ' => 'Ψ', 4300 'Ω' => 'Ω', 4301 'α' => 'α', 4302 'β' => 'β', 4303 'γ' => 'γ', 4304 'δ' => 'δ', 4305 'ε' => 'ε', 4306 'ζ' => 'ζ', 4307 'η' => 'η', 4308 'θ' => 'θ', 4309 'ι' => 'ι', 4310 'κ' => 'κ', 4311 'λ' => 'λ', 4312 'μ' => 'μ', 4313 'ν' => 'ν', 4314 'ξ' => 'ξ', 4315 'ο' => 'ο', 4316 'π' => 'π', 4317 'ρ' => 'ρ', 4318 'ς' => 'ς', 4319 'σ' => 'σ', 4320 'τ' => 'τ', 4321 'υ' => 'υ', 4322 'φ' => 'φ', 4323 'χ' => 'χ', 4324 'ψ' => 'ψ', 4325 'ω' => 'ω', 4326 'ϑ' => 'ϑ', 4327 'ϒ' => 'ϒ', 4328 'ϖ' => 'ϖ', 4329 ' ' => ' ', 4330 ' ' => ' ', 4331 ' ' => ' ', 4332 '‌' => '‌', 4333 '‍' => '‍', 4334 '‎' => '‎', 4335 '‏' => '‏', 4336 '–' => '–', 4337 '—' => '—', 4338 '‘' => '‘', 4339 '’' => '’', 4340 '‚' => '‚', 4341 '“' => '“', 4342 '”' => '”', 4343 '„' => '„', 4344 '†' => '†', 4345 '‡' => '‡', 4346 '•' => '•', 4347 '…' => '…', 4348 '‰' => '‰', 4349 '′' => '′', 4350 '″' => '″', 4351 '‹' => '‹', 4352 '›' => '›', 4353 '‾' => '‾', 4354 '⁄' => '⁄', 4355 '€' => '€', 4356 'ℑ' => 'ℑ', 4357 '℘' => '℘', 4358 'ℜ' => 'ℜ', 4359 '™' => '™', 4360 'ℵ' => 'ℵ', 4361 '↵' => '↵', 4362 '⇐' => '⇐', 4363 '⇑' => '⇑', 4364 '⇒' => '⇒', 4365 '⇓' => '⇓', 4366 '⇔' => '⇔', 4367 '∀' => '∀', 4368 '∂' => '∂', 4369 '∃' => '∃', 4370 '∅' => '∅', 4371 '∇' => '∇', 4372 '∈' => '∈', 4373 '∉' => '∉', 4374 '∋' => '∋', 4375 '∏' => '∏', 4376 '∑' => '∑', 4377 '−' => '−', 4378 '∗' => '∗', 4379 '√' => '√', 4380 '∝' => '∝', 4381 '∞' => '∞', 4382 '∠' => '∠', 4383 '∧' => '∧', 4384 '∨' => '∨', 4385 '∩' => '∩', 4386 '∪' => '∪', 4387 '∫' => '∫', 4388 '∴' => '∴', 4389 '∼' => '∼', 4390 '≅' => '≅', 4391 '≈' => '≈', 4392 '≠' => '≠', 4393 '≡' => '≡', 4394 '≤' => '≤', 4395 '≥' => '≥', 4396 '⊂' => '⊂', 4397 '⊃' => '⊃', 4398 '⊄' => '⊄', 4399 '⊆' => '⊆', 4400 '⊇' => '⊇', 4401 '⊕' => '⊕', 4402 '⊗' => '⊗', 4403 '⊥' => '⊥', 4404 '⋅' => '⋅', 4405 '⌈' => '⌈', 4406 '⌉' => '⌉', 4407 '⌊' => '⌊', 4408 '⌋' => '⌋', 4409 '⟨' => '〈', 4410 '⟩' => '〉', 4411 '←' => '←', 4412 '↑' => '↑', 4413 '→' => '→', 4414 '↓' => '↓', 4415 '↔' => '↔', 4416 '◊' => '◊', 4417 '♠' => '♠', 4418 '♣' => '♣', 4419 '♥' => '♥', 4420 '♦' => '♦', 4421 ); 4422 4423 return str_replace( array_keys( $to_ncr ), array_values( $to_ncr ), $text ); 4424 } 4425 4426 /** 4427 * Formats text for the editor. 4428 * 4429 * Generally the browsers treat everything inside a textarea as text, but 4430 * it is still a good idea to HTML entity encode `<`, `>` and `&` in the content. 4431 * 4432 * The filter {@see 'format_for_editor'} is applied here. If `$text` is empty the 4433 * filter will be applied to an empty string. 4434 * 4435 * @since 4.3.0 4436 * 4437 * @see _WP_Editors::editor() 4438 * 4439 * @param string $text The text to be formatted. 4440 * @param string $default_editor The default editor for the current user. 4441 * It is usually either 'html' or 'tinymce'. 4442 * @return string The formatted text after filter is applied. 4443 */ 4444 function format_for_editor( $text, $default_editor = null ) { 4445 if ( $text ) { 4446 $text = htmlspecialchars( $text, ENT_NOQUOTES, get_option( 'blog_charset' ) ); 4447 } 4448 4449 /** 4450 * Filters the text after it is formatted for the editor. 4451 * 4452 * @since 4.3.0 4453 * 4454 * @param string $text The formatted text. 4455 * @param string $default_editor The default editor for the current user. 4456 * It is usually either 'html' or 'tinymce'. 4457 */ 4458 return apply_filters( 'format_for_editor', $text, $default_editor ); 4459 } 4460 4461 /** 4462 * Performs a deep string replace operation to ensure the values in $search are no longer present. 4463 * 4464 * Repeats the replacement operation until it no longer replaces anything to remove "nested" values 4465 * e.g. $subject = '%0%0%0DDD', $search ='%0D', $result ='' rather than the '%0%0DD' that 4466 * str_replace would return 4467 * 4468 * @since 2.8.1 4469 * @access private 4470 * 4471 * @param string|array $search The value being searched for, otherwise known as the needle. 4472 * An array may be used to designate multiple needles. 4473 * @param string $subject The string being searched and replaced on, otherwise known as the haystack. 4474 * @return string The string with the replaced values. 4475 */ 4476 function _deep_replace( $search, $subject ) { 4477 $subject = (string) $subject; 4478 4479 $count = 1; 4480 while ( $count ) { 4481 $subject = str_replace( $search, '', $subject, $count ); 4482 } 4483 4484 return $subject; 4485 } 4486 4487 /** 4488 * Escapes data for use in a MySQL query. 4489 * 4490 * Usually you should prepare queries using wpdb::prepare(). 4491 * Sometimes, spot-escaping is required or useful. One example 4492 * is preparing an array for use in an IN clause. 4493 * 4494 * NOTE: Since 4.8.3, '%' characters will be replaced with a placeholder string, 4495 * this prevents certain SQLi attacks from taking place. This change in behavior 4496 * may cause issues for code that expects the return value of esc_sql() to be usable 4497 * for other purposes. 4498 * 4499 * @since 2.8.0 4500 * 4501 * @global wpdb $wpdb WordPress database abstraction object. 4502 * 4503 * @param string|array $data Unescaped data. 4504 * @return string|array Escaped data, in the same type as supplied. 4505 */ 4506 function esc_sql( $data ) { 4507 global $wpdb; 4508 return $wpdb->_escape( $data ); 4509 } 4510 4511 /** 4512 * Checks and cleans a URL. 4513 * 4514 * A number of characters are removed from the URL. If the URL is for displaying 4515 * (the default behavior) ampersands are also replaced. The {@see 'clean_url'} filter 4516 * is applied to the returned cleaned URL. 4517 * 4518 * @since 2.8.0 4519 * @since 6.9.0 Prepends `https://` to the URL if it does not already contain a scheme 4520 * and the first item in `$protocols` is 'https'. 4521 * 4522 * @param string $url The URL to be cleaned. 4523 * @param string[] $protocols Optional. An array of acceptable protocols. 4524 * Defaults to return value of wp_allowed_protocols(). 4525 * @param string $_context Private. Use sanitize_url() for database usage. 4526 * @return string The cleaned URL after the {@see 'clean_url'} filter is applied. 4527 * An empty string is returned if `$url` specifies a protocol other than 4528 * those in `$protocols`, or if `$url` contains an empty string. 4529 */ 4530 function esc_url( $url, $protocols = null, $_context = 'display' ) { 4531 $original_url = $url; 4532 4533 if ( '' === $url ) { 4534 return $url; 4535 } 4536 4537 $url = str_replace( ' ', '%20', ltrim( $url ) ); 4538 $url = preg_replace( '|[^a-z0-9-~+_.?#=!&;,/:%@$\|*\'()\[\]\\x80-\\xff]|i', '', $url ); 4539 4540 if ( '' === $url ) { 4541 return $url; 4542 } 4543 4544 if ( 0 !== stripos( $url, 'mailto:' ) ) { 4545 $strip = array( '%0d', '%0a', '%0D', '%0A' ); 4546 $url = _deep_replace( $strip, $url ); 4547 } 4548 4549 $url = str_replace( ';//', '://', $url ); 4550 /* 4551 * If the URL doesn't appear to contain a scheme, we presume 4552 * it needs http:// prepended (unless it's a relative link 4553 * starting with /, # or ?, or a PHP file). If the first item 4554 * in $protocols is 'https', then https:// is prepended. 4555 */ 4556 if ( ! str_contains( $url, ':' ) && ! in_array( $url[0], array( '/', '#', '?' ), true ) && 4557 ! preg_match( '/^[a-z0-9-]+?\.php/i', $url ) 4558 ) { 4559 $scheme = ( is_array( $protocols ) && 'https' === array_first( $protocols ) ) ? 'https://' : 'http://'; 4560 $url = $scheme . $url; 4561 } 4562 4563 // Replace ampersands and single quotes only when displaying. 4564 if ( 'display' === $_context ) { 4565 $url = wp_kses_normalize_entities( $url ); 4566 $url = str_replace( '&', '&', $url ); 4567 $url = str_replace( "'", ''', $url ); 4568 } 4569 4570 if ( str_contains( $url, '[' ) || str_contains( $url, ']' ) ) { 4571 4572 $parsed = wp_parse_url( $url ); 4573 $front = ''; 4574 4575 if ( isset( $parsed['scheme'] ) ) { 4576 $front .= $parsed['scheme'] . '://'; 4577 } elseif ( '/' === $url[0] ) { 4578 $front .= '//'; 4579 } 4580 4581 if ( isset( $parsed['user'] ) ) { 4582 $front .= $parsed['user']; 4583 } 4584 4585 if ( isset( $parsed['pass'] ) ) { 4586 $front .= ':' . $parsed['pass']; 4587 } 4588 4589 if ( isset( $parsed['user'] ) || isset( $parsed['pass'] ) ) { 4590 $front .= '@'; 4591 } 4592 4593 if ( isset( $parsed['host'] ) ) { 4594 $front .= $parsed['host']; 4595 } 4596 4597 if ( isset( $parsed['port'] ) ) { 4598 $front .= ':' . $parsed['port']; 4599 } 4600 4601 $end_dirty = str_replace( $front, '', $url ); 4602 $end_clean = str_replace( array( '[', ']' ), array( '%5B', '%5D' ), $end_dirty ); 4603 $url = str_replace( $end_dirty, $end_clean, $url ); 4604 4605 } 4606 4607 if ( '/' === $url[0] ) { 4608 $good_protocol_url = $url; 4609 } else { 4610 if ( ! is_array( $protocols ) ) { 4611 $protocols = wp_allowed_protocols(); 4612 } 4613 $good_protocol_url = wp_kses_bad_protocol( $url, $protocols ); 4614 if ( strtolower( $good_protocol_url ) !== strtolower( $url ) ) { 4615 return ''; 4616 } 4617 } 4618 4619 /** 4620 * Filters a string cleaned and escaped for output as a URL. 4621 * 4622 * @since 2.3.0 4623 * 4624 * @param string $good_protocol_url The cleaned URL to be returned. 4625 * @param string $original_url The URL prior to cleaning. 4626 * @param string $_context If 'display', replace ampersands and single quotes only. 4627 */ 4628 return apply_filters( 'clean_url', $good_protocol_url, $original_url, $_context ); 4629 } 4630 4631 /** 4632 * Sanitizes a URL for database or redirect usage. 4633 * 4634 * This function is an alias for sanitize_url(). 4635 * 4636 * @since 2.8.0 4637 * @since 6.1.0 Turned into an alias for sanitize_url(). 4638 * 4639 * @see sanitize_url() 4640 * 4641 * @param string $url The URL to be cleaned. 4642 * @param string[] $protocols Optional. An array of acceptable protocols. 4643 * Defaults to return value of wp_allowed_protocols(). 4644 * @return string The cleaned URL after sanitize_url() is run. 4645 */ 4646 function esc_url_raw( $url, $protocols = null ) { 4647 return sanitize_url( $url, $protocols ); 4648 } 4649 4650 /** 4651 * Sanitizes a URL for database or redirect usage. 4652 * 4653 * @since 2.3.1 4654 * @since 2.8.0 Deprecated in favor of esc_url_raw(). 4655 * @since 5.9.0 Restored (un-deprecated). 4656 * 4657 * @see esc_url() 4658 * 4659 * @param string $url The URL to be cleaned. 4660 * @param string[] $protocols Optional. An array of acceptable protocols. 4661 * Defaults to return value of wp_allowed_protocols(). 4662 * @return string The cleaned URL after esc_url() is run with the 'db' context. 4663 */ 4664 function sanitize_url( $url, $protocols = null ) { 4665 return esc_url( $url, $protocols, 'db' ); 4666 } 4667 4668 /** 4669 * Converts entities, while preserving already-encoded entities. 4670 * 4671 * @link https://www.php.net/htmlentities Borrowed from the PHP Manual user notes. 4672 * 4673 * @since 1.2.2 4674 * 4675 * @param string $text The text to be converted. 4676 * @return string Converted text. 4677 */ 4678 function htmlentities2( $text ) { 4679 $translation_table = get_html_translation_table( HTML_ENTITIES, ENT_QUOTES ); 4680 4681 $translation_table[ chr( 38 ) ] = '&'; 4682 4683 return preg_replace( '/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,3};)/', '&', strtr( $text, $translation_table ) ); 4684 } 4685 4686 /** 4687 * Escapes single quotes, `"`, `<`, `>`, `&`, and fixes line endings. 4688 * 4689 * Escapes text strings for echoing in JS. It is intended to be used for inline JS 4690 * (in a tag attribute, for example `onclick="..."`). Note that the strings have to 4691 * be in single quotes. The {@see 'js_escape'} filter is also applied here. 4692 * 4693 * @since 2.8.0 4694 * 4695 * @param string $text The text to be escaped. 4696 * @return string Escaped text. 4697 */ 4698 function esc_js( $text ) { 4699 $safe_text = wp_check_invalid_utf8( $text ); 4700 $safe_text = _wp_specialchars( $safe_text, ENT_COMPAT ); 4701 $safe_text = preg_replace( '/&#(x)?0*(?(1)27|39);?/i', "'", stripslashes( $safe_text ) ); 4702 $safe_text = str_replace( "\r", '', $safe_text ); 4703 $safe_text = str_replace( "\n", '\\n', addslashes( $safe_text ) ); 4704 /** 4705 * Filters a string cleaned and escaped for output in JavaScript. 4706 * 4707 * Text passed to esc_js() is stripped of invalid or special characters, 4708 * and properly slashed for output. 4709 * 4710 * @since 2.0.6 4711 * 4712 * @param string $safe_text The text after it has been escaped. 4713 * @param string $text The text prior to being escaped. 4714 */ 4715 return apply_filters( 'js_escape', $safe_text, $text ); 4716 } 4717 4718 /** 4719 * Escaping for HTML blocks. 4720 * 4721 * @since 2.8.0 4722 * 4723 * @param string $text 4724 * @return string 4725 */ 4726 function esc_html( $text ) { 4727 $safe_text = wp_check_invalid_utf8( $text ); 4728 $safe_text = _wp_specialchars( $safe_text, ENT_QUOTES ); 4729 /** 4730 * Filters a string cleaned and escaped for output in HTML. 4731 * 4732 * Text passed to esc_html() is stripped of invalid or special characters 4733 * before output. 4734 * 4735 * @since 2.8.0 4736 * 4737 * @param string $safe_text The text after it has been escaped. 4738 * @param string $text The text prior to being escaped. 4739 */ 4740 return apply_filters( 'esc_html', $safe_text, $text ); 4741 } 4742 4743 /** 4744 * Escaping for HTML attributes. 4745 * 4746 * @since 2.8.0 4747 * 4748 * @param string $text 4749 * @return string 4750 */ 4751 function esc_attr( $text ) { 4752 $safe_text = wp_check_invalid_utf8( $text ); 4753 $safe_text = _wp_specialchars( $safe_text, ENT_QUOTES ); 4754 /** 4755 * Filters a string cleaned and escaped for output in an HTML attribute. 4756 * 4757 * Text passed to esc_attr() is stripped of invalid or special characters 4758 * before output. 4759 * 4760 * @since 2.0.6 4761 * 4762 * @param string $safe_text The text after it has been escaped. 4763 * @param string $text The text prior to being escaped. 4764 */ 4765 return apply_filters( 'attribute_escape', $safe_text, $text ); 4766 } 4767 4768 /** 4769 * Escaping for textarea values. 4770 * 4771 * @since 3.1.0 4772 * 4773 * @param string $text 4774 * @return string 4775 */ 4776 function esc_textarea( $text ) { 4777 $safe_text = htmlspecialchars( $text, ENT_QUOTES, get_option( 'blog_charset' ) ); 4778 /** 4779 * Filters a string cleaned and escaped for output in a textarea element. 4780 * 4781 * @since 3.1.0 4782 * 4783 * @param string $safe_text The text after it has been escaped. 4784 * @param string $text The text prior to being escaped. 4785 */ 4786 return apply_filters( 'esc_textarea', $safe_text, $text ); 4787 } 4788 4789 /** 4790 * Escaping for XML blocks. 4791 * 4792 * @since 5.5.0 4793 * 4794 * @param string $text Text to escape. 4795 * @return string Escaped text. 4796 */ 4797 function esc_xml( $text ) { 4798 $safe_text = wp_check_invalid_utf8( $text ); 4799 4800 $cdata_regex = '\<\!\[CDATA\[.*?\]\]\>'; 4801 $regex = <<<EOF 4802 / 4803 (?=.*?{$cdata_regex}) # lookahead that will match anything followed by a CDATA Section 4804 (?<non_cdata_followed_by_cdata>(.*?)) # the "anything" matched by the lookahead 4805 (?<cdata>({$cdata_regex})) # the CDATA Section matched by the lookahead 4806 4807 | # alternative 4808 4809 (?<non_cdata>(.*)) # non-CDATA Section 4810 /sx 4811 EOF; 4812 4813 $safe_text = (string) preg_replace_callback( 4814 $regex, 4815 static function ( $matches ) { 4816 if ( ! isset( $matches[0] ) ) { 4817 return ''; 4818 } 4819 4820 if ( isset( $matches['non_cdata'] ) ) { 4821 // escape HTML entities in the non-CDATA Section. 4822 return _wp_specialchars( $matches['non_cdata'], ENT_XML1 ); 4823 } 4824 4825 // Return the CDATA Section unchanged, escape HTML entities in the rest. 4826 return _wp_specialchars( $matches['non_cdata_followed_by_cdata'], ENT_XML1 ) . $matches['cdata']; 4827 }, 4828 $safe_text 4829 ); 4830 4831 /** 4832 * Filters a string cleaned and escaped for output in XML. 4833 * 4834 * Text passed to esc_xml() is stripped of invalid or special characters 4835 * before output. HTML named character references are converted to their 4836 * equivalent code points. 4837 * 4838 * @since 5.5.0 4839 * 4840 * @param string $safe_text The text after it has been escaped. 4841 * @param string $text The text prior to being escaped. 4842 */ 4843 return apply_filters( 'esc_xml', $safe_text, $text ); 4844 } 4845 4846 /** 4847 * Escapes an HTML tag name. 4848 * 4849 * @since 2.5.0 4850 * @since 6.5.5 Allow hyphens in tag names (i.e. custom elements). 4851 * 4852 * @param string $tag_name 4853 * @return string 4854 */ 4855 function tag_escape( $tag_name ) { 4856 $safe_tag = strtolower( preg_replace( '/[^a-zA-Z0-9-_:]/', '', $tag_name ) ); 4857 /** 4858 * Filters a string cleaned and escaped for output as an HTML tag. 4859 * 4860 * @since 2.8.0 4861 * 4862 * @param string $safe_tag The tag name after it has been escaped. 4863 * @param string $tag_name The text before it was escaped. 4864 */ 4865 return apply_filters( 'tag_escape', $safe_tag, $tag_name ); 4866 } 4867 4868 /** 4869 * Converts full URL paths to absolute paths. 4870 * 4871 * Removes the http or https protocols and the domain. Keeps the path '/' at the 4872 * beginning, so it isn't a true relative link, but from the web root base. 4873 * 4874 * @since 2.1.0 4875 * @since 4.1.0 Support was added for relative URLs. 4876 * 4877 * @param string $link Full URL path. 4878 * @return string Absolute path. 4879 */ 4880 function wp_make_link_relative( $link ) { 4881 return preg_replace( '|^(https?:)?//[^/]+(/?.*)|i', '$2', $link ); 4882 } 4883 4884 /** 4885 * Sanitizes various option values based on the nature of the option. 4886 * 4887 * This is basically a switch statement which will pass $value through a number 4888 * of functions depending on the $option. 4889 * 4890 * @since 2.0.5 4891 * 4892 * @global wpdb $wpdb WordPress database abstraction object. 4893 * 4894 * @param string $option The name of the option. 4895 * @param mixed $value The unsanitized value. 4896 * @return mixed Sanitized value. 4897 */ 4898 function sanitize_option( $option, $value ) { 4899 global $wpdb; 4900 4901 $original_value = $value; 4902 $error = null; 4903 4904 switch ( $option ) { 4905 case 'admin_email': 4906 case 'new_admin_email': 4907 $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value ); 4908 if ( is_wp_error( $value ) ) { 4909 $error = $value->get_error_message(); 4910 } else { 4911 $value = sanitize_email( $value ); 4912 if ( ! is_email( $value ) ) { 4913 $error = __( 'The email address entered did not appear to be a valid email address. Please enter a valid email address.' ); 4914 } 4915 } 4916 break; 4917 4918 case 'thumbnail_size_w': 4919 case 'thumbnail_size_h': 4920 case 'medium_size_w': 4921 case 'medium_size_h': 4922 case 'medium_large_size_w': 4923 case 'medium_large_size_h': 4924 case 'large_size_w': 4925 case 'large_size_h': 4926 case 'mailserver_port': 4927 case 'comment_max_links': 4928 case 'page_on_front': 4929 case 'page_for_posts': 4930 case 'rss_excerpt_length': 4931 case 'default_category': 4932 case 'default_email_category': 4933 case 'default_link_category': 4934 case 'close_comments_days_old': 4935 case 'comments_per_page': 4936 case 'thread_comments_depth': 4937 case 'users_can_register': 4938 case 'start_of_week': 4939 case 'site_icon': 4940 case 'fileupload_maxk': 4941 $value = absint( $value ); 4942 break; 4943 4944 case 'posts_per_page': 4945 case 'posts_per_rss': 4946 $value = (int) $value; 4947 if ( empty( $value ) ) { 4948 $value = 1; 4949 } 4950 if ( $value < -1 ) { 4951 $value = abs( $value ); 4952 } 4953 break; 4954 4955 case 'default_ping_status': 4956 case 'default_comment_status': 4957 // Options that if not there have 0 value but need to be something like "closed". 4958 if ( '0' === (string) $value || '' === $value ) { 4959 $value = 'closed'; 4960 } 4961 break; 4962 4963 case 'blogdescription': 4964 case 'blogname': 4965 $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value ); 4966 if ( $value !== $original_value ) { 4967 $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', wp_encode_emoji( $original_value ) ); 4968 } 4969 4970 if ( is_wp_error( $value ) ) { 4971 $error = $value->get_error_message(); 4972 } else { 4973 $value = esc_html( $value ); 4974 } 4975 break; 4976 4977 case 'blog_charset': 4978 if ( is_string( $value ) ) { 4979 $value = preg_replace( '/[^a-zA-Z0-9_-]/', '', $value ); // Strips slashes. 4980 } else { 4981 $value = ''; 4982 } 4983 break; 4984 4985 case 'blog_public': 4986 // This is the value if the settings checkbox is not checked on POST. Don't rely on this. 4987 if ( null === $value ) { 4988 $value = 1; 4989 } else { 4990 $value = (int) $value; 4991 } 4992 break; 4993 4994 case 'date_format': 4995 case 'time_format': 4996 case 'mailserver_url': 4997 case 'mailserver_login': 4998 case 'mailserver_pass': 4999 case 'upload_path': 5000 $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value ); 5001 if ( is_wp_error( $value ) ) { 5002 $error = $value->get_error_message(); 5003 } else { 5004 $value = strip_tags( $value ); 5005 $value = wp_kses_data( $value ); 5006 } 5007 break; 5008 5009 case 'ping_sites': 5010 $value = explode( "\n", $value ); 5011 $value = array_filter( array_map( 'trim', $value ) ); 5012 $value = array_filter( array_map( 'sanitize_url', $value ) ); 5013 $value = implode( "\n", $value ); 5014 break; 5015 5016 case 'gmt_offset': 5017 if ( is_numeric( $value ) ) { 5018 $value = preg_replace( '/[^0-9:.-]/', '', $value ); // Strips slashes. 5019 } else { 5020 $value = ''; 5021 } 5022 break; 5023 5024 case 'siteurl': 5025 $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value ); 5026 if ( is_wp_error( $value ) ) { 5027 $error = $value->get_error_message(); 5028 } else { 5029 if ( preg_match( '#http(s?)://(.+)#i', $value ) ) { 5030 $value = sanitize_url( $value ); 5031 } else { 5032 $error = __( 'The WordPress address you entered did not appear to be a valid URL. Please enter a valid URL.' ); 5033 } 5034 } 5035 break; 5036 5037 case 'home': 5038 $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value ); 5039 if ( is_wp_error( $value ) ) { 5040 $error = $value->get_error_message(); 5041 } else { 5042 if ( preg_match( '#http(s?)://(.+)#i', $value ) ) { 5043 $value = sanitize_url( $value ); 5044 } else { 5045 $error = __( 'The Site address you entered did not appear to be a valid URL. Please enter a valid URL.' ); 5046 } 5047 } 5048 break; 5049 5050 case 'WPLANG': 5051 $allowed = get_available_languages(); 5052 if ( ! is_multisite() && defined( 'WPLANG' ) && '' !== WPLANG && 'en_US' !== WPLANG ) { 5053 $allowed[] = WPLANG; 5054 } 5055 if ( ! in_array( $value, $allowed, true ) && ! empty( $value ) ) { 5056 $value = get_option( $option ); 5057 } 5058 break; 5059 5060 case 'illegal_names': 5061 $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value ); 5062 if ( is_wp_error( $value ) ) { 5063 $error = $value->get_error_message(); 5064 } else { 5065 if ( ! is_array( $value ) ) { 5066 $value = explode( ' ', $value ); 5067 } 5068 5069 $value = array_values( array_filter( array_map( 'trim', $value ) ) ); 5070 5071 if ( ! $value ) { 5072 $value = ''; 5073 } 5074 } 5075 break; 5076 5077 case 'limited_email_domains': 5078 case 'banned_email_domains': 5079 $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value ); 5080 if ( is_wp_error( $value ) ) { 5081 $error = $value->get_error_message(); 5082 } else { 5083 if ( ! is_array( $value ) ) { 5084 $value = explode( "\n", $value ); 5085 } 5086 5087 $domains = array_values( array_filter( array_map( 'trim', $value ) ) ); 5088 $value = array(); 5089 5090 foreach ( $domains as $domain ) { 5091 if ( ! preg_match( '/(--|\.\.)/', $domain ) && preg_match( '|^([a-zA-Z0-9-\.])+$|', $domain ) ) { 5092 $value[] = $domain; 5093 } 5094 } 5095 if ( ! $value ) { 5096 $value = ''; 5097 } 5098 } 5099 break; 5100 5101 case 'timezone_string': 5102 $allowed_zones = timezone_identifiers_list( DateTimeZone::ALL_WITH_BC ); 5103 if ( ! in_array( $value, $allowed_zones, true ) && ! empty( $value ) ) { 5104 $error = __( 'The timezone you have entered is not valid. Please select a valid timezone.' ); 5105 } 5106 break; 5107 5108 case 'permalink_structure': 5109 case 'category_base': 5110 case 'tag_base': 5111 $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value ); 5112 if ( is_wp_error( $value ) ) { 5113 $error = $value->get_error_message(); 5114 } else { 5115 $value = sanitize_url( $value ); 5116 $value = str_replace( 'http://', '', $value ); 5117 } 5118 5119 if ( 'permalink_structure' === $option && null === $error 5120 && '' !== $value && ! preg_match( '/%[^\/%]+%/', $value ) 5121 ) { 5122 $error = sprintf( 5123 /* translators: %s: Documentation URL. */ 5124 __( 'A structure tag is required when using custom permalinks. <a href="%s">Learn more</a>' ), 5125 __( 'https://wordpress.org/documentation/article/customize-permalinks/#choosing-your-permalink-structure' ) 5126 ); 5127 } 5128 break; 5129 5130 case 'default_role': 5131 if ( ! get_role( $value ) && get_role( 'subscriber' ) ) { 5132 $value = 'subscriber'; 5133 } 5134 break; 5135 5136 case 'moderation_keys': 5137 case 'disallowed_keys': 5138 $value = $wpdb->strip_invalid_text_for_column( $wpdb->options, 'option_value', $value ); 5139 if ( is_wp_error( $value ) ) { 5140 $error = $value->get_error_message(); 5141 } else { 5142 $value = explode( "\n", $value ); 5143 $value = array_filter( array_map( 'trim', $value ) ); 5144 $value = array_unique( $value ); 5145 $value = implode( "\n", $value ); 5146 } 5147 break; 5148 } 5149 5150 if ( null !== $error ) { 5151 if ( '' === $error && is_wp_error( $value ) ) { 5152 /* translators: 1: Option name, 2: Error code. */ 5153 $error = sprintf( __( 'Could not sanitize the %1$s option. Error code: %2$s' ), $option, $value->get_error_code() ); 5154 } 5155 5156 $value = get_option( $option ); 5157 if ( function_exists( 'add_settings_error' ) ) { 5158 add_settings_error( $option, "invalid_{$option}", $error ); 5159 } 5160 } 5161 5162 /** 5163 * Filters an option value following sanitization. 5164 * 5165 * @since 2.3.0 5166 * @since 4.3.0 Added the `$original_value` parameter. 5167 * 5168 * @param mixed $value The sanitized option value. 5169 * @param string $option The option name. 5170 * @param mixed $original_value The original value passed to the function. 5171 */ 5172 return apply_filters( "sanitize_option_{$option}", $value, $option, $original_value ); 5173 } 5174 5175 /** 5176 * Maps a function to all non-iterable elements of an array or an object. 5177 * 5178 * This is similar to `array_walk_recursive()` but acts upon objects too. 5179 * 5180 * @since 4.4.0 5181 * 5182 * @param mixed $value The array, object, or scalar. 5183 * @param callable $callback The function to map onto $value. 5184 * @return mixed The value with the callback applied to all non-arrays and non-objects inside it. 5185 */ 5186 function map_deep( $value, $callback ) { 5187 if ( is_array( $value ) ) { 5188 foreach ( $value as $index => $item ) { 5189 $value[ $index ] = map_deep( $item, $callback ); 5190 } 5191 } elseif ( is_object( $value ) ) { 5192 $object_vars = get_object_vars( $value ); 5193 foreach ( $object_vars as $property_name => $property_value ) { 5194 $value->$property_name = map_deep( $property_value, $callback ); 5195 } 5196 } else { 5197 $value = call_user_func( $callback, $value ); 5198 } 5199 5200 return $value; 5201 } 5202 5203 /** 5204 * Parses a string into variables to be stored in an array. 5205 * 5206 * @since 2.2.1 5207 * 5208 * @param string $input_string The string to be parsed. 5209 * @param array $result Variables will be stored in this array. 5210 */ 5211 function wp_parse_str( $input_string, &$result ) { 5212 parse_str( (string) $input_string, $result ); 5213 5214 /** 5215 * Filters the array of variables derived from a parsed string. 5216 * 5217 * @since 2.2.1 5218 * 5219 * @param array $result The array populated with variables. 5220 */ 5221 $result = apply_filters( 'wp_parse_str', $result ); 5222 } 5223 5224 /** 5225 * Converts lone less than signs. 5226 * 5227 * KSES already converts lone greater than signs. 5228 * 5229 * @since 2.3.0 5230 * 5231 * @param string $content Text to be converted. 5232 * @return string Converted text. 5233 */ 5234 function wp_pre_kses_less_than( $content ) { 5235 return preg_replace_callback( '%<[^>]*?((?=<)|>|$)%', 'wp_pre_kses_less_than_callback', $content ); 5236 } 5237 5238 /** 5239 * Callback function used by preg_replace. 5240 * 5241 * @since 2.3.0 5242 * 5243 * @param string[] $matches Populated by matches to preg_replace. 5244 * @return string The text returned after esc_html if needed. 5245 */ 5246 function wp_pre_kses_less_than_callback( $matches ) { 5247 if ( ! str_contains( $matches[0], '>' ) ) { 5248 return esc_html( $matches[0] ); 5249 } 5250 return $matches[0]; 5251 } 5252 5253 /** 5254 * Removes non-allowable HTML from parsed block attribute values when filtering 5255 * in the post context. 5256 * 5257 * @since 5.3.1 5258 * 5259 * @param string $content Content to be run through KSES. 5260 * @param array[]|string $allowed_html An array of allowed HTML elements 5261 * and attributes, or a context name 5262 * such as 'post'. 5263 * @param string[] $allowed_protocols Array of allowed URL protocols. 5264 * @return string Filtered text to run through KSES. 5265 */ 5266 function wp_pre_kses_block_attributes( $content, $allowed_html, $allowed_protocols ) { 5267 /* 5268 * `filter_block_content` is expected to call `wp_kses`. Temporarily remove 5269 * the filter to avoid recursion. 5270 */ 5271 remove_filter( 'pre_kses', 'wp_pre_kses_block_attributes', 10 ); 5272 $content = filter_block_content( $content, $allowed_html, $allowed_protocols ); 5273 add_filter( 'pre_kses', 'wp_pre_kses_block_attributes', 10, 3 ); 5274 5275 return $content; 5276 } 5277 5278 /** 5279 * WordPress' implementation of PHP sprintf() with filters. 5280 * 5281 * @since 2.5.0 5282 * @since 5.3.0 Formalized the existing and already documented `...$args` parameter 5283 * by adding it to the function signature. 5284 * 5285 * @link https://www.php.net/sprintf 5286 * 5287 * @param string $pattern The string which formatted args are inserted. 5288 * @param mixed ...$args Arguments to be formatted into the $pattern string. 5289 * @return string The formatted string. 5290 */ 5291 function wp_sprintf( $pattern, ...$args ) { 5292 $len = strlen( $pattern ); 5293 $start = 0; 5294 $result = ''; 5295 $arg_index = 0; 5296 5297 while ( $len > $start ) { 5298 // Last character: append and break. 5299 if ( strlen( $pattern ) - 1 === $start ) { 5300 $result .= substr( $pattern, -1 ); 5301 break; 5302 } 5303 5304 // Literal %: append and continue. 5305 if ( '%%' === substr( $pattern, $start, 2 ) ) { 5306 $start += 2; 5307 $result .= '%'; 5308 continue; 5309 } 5310 5311 // Get fragment before next %. 5312 $end = strpos( $pattern, '%', $start + 1 ); 5313 if ( false === $end ) { 5314 $end = $len; 5315 } 5316 $fragment = substr( $pattern, $start, $end - $start ); 5317 5318 // Fragment has a specifier. 5319 if ( '%' === $pattern[ $start ] ) { 5320 // Find numbered arguments or take the next one in order. 5321 if ( preg_match( '/^%(\d+)\$/', $fragment, $matches ) ) { 5322 $index = $matches[1] - 1; // 0-based array vs 1-based sprintf() arguments. 5323 $arg = isset( $args[ $index ] ) ? $args[ $index ] : ''; 5324 $fragment = str_replace( "%{$matches[1]}$", '%', $fragment ); 5325 } else { 5326 $arg = isset( $args[ $arg_index ] ) ? $args[ $arg_index ] : ''; 5327 ++$arg_index; 5328 } 5329 5330 /** 5331 * Filters a fragment from the pattern passed to wp_sprintf(). 5332 * 5333 * If the fragment is unchanged, then sprintf() will be run on the fragment. 5334 * 5335 * @since 2.5.0 5336 * 5337 * @param string $fragment A fragment from the pattern. 5338 * @param string $arg The argument. 5339 */ 5340 $_fragment = apply_filters( 'wp_sprintf', $fragment, $arg ); 5341 5342 if ( $_fragment !== $fragment ) { 5343 $fragment = $_fragment; 5344 } else { 5345 $fragment = sprintf( $fragment, (string) $arg ); 5346 } 5347 } 5348 5349 // Append to result and move to next fragment. 5350 $result .= $fragment; 5351 $start = $end; 5352 } 5353 5354 return $result; 5355 } 5356 5357 /** 5358 * Localizes list items before the rest of the content. 5359 * 5360 * The '%l' must be at the first characters can then contain the rest of the 5361 * content. The list items will have ', ', ', and', and ' and ' added depending 5362 * on the amount of list items in the $args parameter. 5363 * 5364 * @since 2.5.0 5365 * 5366 * @param string $pattern Content containing '%l' at the beginning. 5367 * @param array $args List items to prepend to the content and replace '%l'. 5368 * @return string Localized list items and rest of the content. 5369 */ 5370 function wp_sprintf_l( $pattern, $args ) { 5371 // Not a match. 5372 if ( ! str_starts_with( $pattern, '%l' ) ) { 5373 return $pattern; 5374 } 5375 5376 // Nothing to work with. 5377 if ( empty( $args ) ) { 5378 return ''; 5379 } 5380 5381 /** 5382 * Filters the translated delimiters used by wp_sprintf_l(). 5383 * Placeholders (%s) are included to assist translators and then 5384 * removed before the array of strings reaches the filter. 5385 * 5386 * Please note: Ampersands and entities should be avoided here. 5387 * 5388 * @since 2.5.0 5389 * 5390 * @param array $delimiters An array of translated delimiters. 5391 */ 5392 $l = apply_filters( 5393 'wp_sprintf_l', 5394 array( 5395 /* translators: Used to join items in a list with more than 2 items. */ 5396 'between' => sprintf( __( '%1$s, %2$s' ), '', '' ), 5397 /* translators: Used to join last two items in a list with more than 2 times. */ 5398 'between_last_two' => sprintf( __( '%1$s, and %2$s' ), '', '' ), 5399 /* translators: Used to join items in a list with only 2 items. */ 5400 'between_only_two' => sprintf( __( '%1$s and %2$s' ), '', '' ), 5401 ) 5402 ); 5403 5404 $args = (array) $args; 5405 $result = array_shift( $args ); 5406 if ( count( $args ) === 1 ) { 5407 $result .= $l['between_only_two'] . array_shift( $args ); 5408 } 5409 5410 // Loop when more than two args. 5411 $i = count( $args ); 5412 while ( $i ) { 5413 $arg = array_shift( $args ); 5414 --$i; 5415 if ( 0 === $i ) { 5416 $result .= $l['between_last_two'] . $arg; 5417 } else { 5418 $result .= $l['between'] . $arg; 5419 } 5420 } 5421 5422 return $result . substr( $pattern, 2 ); 5423 } 5424 5425 /** 5426 * Safely extracts not more than the first $count characters from HTML string. 5427 * 5428 * UTF-8, tags and entities safe prefix extraction. Entities inside will *NOT* 5429 * be counted as one character. For example & will be counted as 4, < as 5430 * 3, etc. 5431 * 5432 * @since 2.5.0 5433 * 5434 * @param string $str String to get the excerpt from. 5435 * @param int $count Maximum number of characters to take. 5436 * @param string $more Optional. What to append if $str needs to be trimmed. Defaults to empty string. 5437 * @return string The excerpt. 5438 */ 5439 function wp_html_excerpt( $str, $count, $more = null ) { 5440 if ( null === $more ) { 5441 $more = ''; 5442 } 5443 5444 $str = wp_strip_all_tags( $str, true ); 5445 $excerpt = mb_substr( $str, 0, $count ); 5446 5447 // Remove part of an entity at the end. 5448 $excerpt = preg_replace( '/&[^;\s]{0,6}$/', '', $excerpt ); 5449 5450 if ( $str !== $excerpt ) { 5451 $excerpt = trim( $excerpt ) . $more; 5452 } 5453 5454 return $excerpt; 5455 } 5456 5457 /** 5458 * Adds a base URL to relative links in passed content. 5459 * 5460 * By default, this function supports the 'src' and 'href' attributes. 5461 * However, this can be modified via the `$attrs` parameter. 5462 * 5463 * @since 2.7.0 5464 * 5465 * @global string $_links_add_base 5466 * 5467 * @param string $content String to search for links in. 5468 * @param string $base The base URL to prefix to links. 5469 * @param string[] $attrs The attributes which should be processed. 5470 * @return string The processed content. 5471 */ 5472 function links_add_base_url( $content, $base, $attrs = array( 'src', 'href' ) ) { 5473 global $_links_add_base; 5474 $_links_add_base = $base; 5475 $attrs = implode( '|', (array) $attrs ); 5476 return preg_replace_callback( "!($attrs)=(['\"])(.+?)\\2!i", '_links_add_base', $content ); 5477 } 5478 5479 /** 5480 * Callback to add a base URL to relative links in passed content. 5481 * 5482 * @since 2.7.0 5483 * @access private 5484 * 5485 * @global string $_links_add_base 5486 * 5487 * @param string $m The matched link. 5488 * @return string The processed link. 5489 */ 5490 function _links_add_base( $m ) { 5491 global $_links_add_base; 5492 // 1 = attribute name 2 = quotation mark 3 = URL. 5493 return $m[1] . '=' . $m[2] . 5494 ( preg_match( '#^(\w{1,20}):#', $m[3], $protocol ) && in_array( $protocol[1], wp_allowed_protocols(), true ) ? 5495 $m[3] : 5496 WP_Http::make_absolute_url( $m[3], $_links_add_base ) 5497 ) 5498 . $m[2]; 5499 } 5500 5501 /** 5502 * Adds a target attribute to all links in passed content. 5503 * 5504 * By default, this function only applies to `<a>` tags. 5505 * However, this can be modified via the `$tags` parameter. 5506 * 5507 * *NOTE:* Any current target attribute will be stripped and replaced. 5508 * 5509 * @since 2.7.0 5510 * 5511 * @global string $_links_add_target 5512 * 5513 * @param string $content String to search for links in. 5514 * @param string $target The target to add to the links. 5515 * @param string[] $tags An array of tags to apply to. 5516 * @return string The processed content. 5517 */ 5518 function links_add_target( $content, $target = '_blank', $tags = array( 'a' ) ) { 5519 global $_links_add_target; 5520 $_links_add_target = $target; 5521 $tags = implode( '|', (array) $tags ); 5522 return preg_replace_callback( "!<($tags)((\s[^>]*)?)>!i", '_links_add_target', $content ); 5523 } 5524 5525 /** 5526 * Callback to add a target attribute to all links in passed content. 5527 * 5528 * @since 2.7.0 5529 * @access private 5530 * 5531 * @global string $_links_add_target 5532 * 5533 * @param string $m The matched link. 5534 * @return string The processed link. 5535 */ 5536 function _links_add_target( $m ) { 5537 global $_links_add_target; 5538 $tag = $m[1]; 5539 $link = preg_replace( '|( target=([\'"])(.*?)\2)|i', '', $m[2] ); 5540 return '<' . $tag . $link . ' target="' . esc_attr( $_links_add_target ) . '">'; 5541 } 5542 5543 /** 5544 * Normalizes EOL characters and strips duplicate whitespace. 5545 * 5546 * @since 2.7.0 5547 * 5548 * @param string $str The string to normalize. 5549 * @return string The normalized string. 5550 */ 5551 function normalize_whitespace( $str ) { 5552 $str = trim( $str ); 5553 $str = str_replace( "\r", "\n", $str ); 5554 $str = preg_replace( array( '/\n+/', '/[ \t]+/' ), array( "\n", ' ' ), $str ); 5555 return $str; 5556 } 5557 5558 /** 5559 * Properly strips all HTML tags including 'script' and 'style'. 5560 * 5561 * This differs from strip_tags() because it removes the contents of 5562 * the `<script>` and `<style>` tags. E.g. `strip_tags( '<script>something</script>' )` 5563 * will return 'something'. wp_strip_all_tags() will return an empty string. 5564 * 5565 * @since 2.9.0 5566 * 5567 * @param string $text String containing HTML tags 5568 * @param bool $remove_breaks Optional. Whether to remove left over line breaks and white space chars 5569 * @return string The processed string. 5570 */ 5571 function wp_strip_all_tags( $text, $remove_breaks = false ) { 5572 if ( is_null( $text ) ) { 5573 return ''; 5574 } 5575 5576 if ( ! is_scalar( $text ) ) { 5577 /* 5578 * To maintain consistency with pre-PHP 8 error levels, 5579 * wp_trigger_error() is used to trigger an E_USER_WARNING, 5580 * rather than _doing_it_wrong(), which triggers an E_USER_NOTICE. 5581 */ 5582 wp_trigger_error( 5583 '', 5584 sprintf( 5585 /* translators: 1: The function name, 2: The argument number, 3: The argument name, 4: The expected type, 5: The provided type. */ 5586 __( 'Warning: %1$s expects parameter %2$s (%3$s) to be a %4$s, %5$s given.' ), 5587 __FUNCTION__, 5588 '#1', 5589 '$text', 5590 'string', 5591 gettype( $text ) 5592 ), 5593 E_USER_WARNING 5594 ); 5595 5596 return ''; 5597 } 5598 5599 $text = preg_replace( '@<(script|style)[^>]*?>.*?</\\1>@si', '', $text ); 5600 $text = strip_tags( $text ); 5601 5602 if ( $remove_breaks ) { 5603 $text = preg_replace( '/[\r\n\t ]+/', ' ', $text ); 5604 } 5605 5606 return trim( $text ); 5607 } 5608 5609 /** 5610 * Sanitizes a string from user input or from the database. 5611 * 5612 * - Checks for invalid UTF-8, 5613 * - Converts single `<` characters to entities 5614 * - Strips all tags 5615 * - Removes line breaks, tabs, and extra whitespace 5616 * - Strips percent-encoded characters 5617 * 5618 * @since 2.9.0 5619 * 5620 * @see sanitize_textarea_field() 5621 * @see wp_check_invalid_utf8() 5622 * @see wp_strip_all_tags() 5623 * 5624 * @param string $str String to sanitize. 5625 * @return string Sanitized string. 5626 */ 5627 function sanitize_text_field( $str ) { 5628 $filtered = _sanitize_text_fields( $str, false ); 5629 5630 /** 5631 * Filters a sanitized text field string. 5632 * 5633 * @since 2.9.0 5634 * 5635 * @param string $filtered The sanitized string. 5636 * @param string $str The string prior to being sanitized. 5637 */ 5638 return apply_filters( 'sanitize_text_field', $filtered, $str ); 5639 } 5640 5641 /** 5642 * Sanitizes a multiline string from user input or from the database. 5643 * 5644 * The function is like sanitize_text_field(), but preserves 5645 * new lines (\n) and other whitespace, which are legitimate 5646 * input in textarea elements. 5647 * 5648 * @see sanitize_text_field() 5649 * 5650 * @since 4.7.0 5651 * 5652 * @param string $str String to sanitize. 5653 * @return string Sanitized string. 5654 */ 5655 function sanitize_textarea_field( $str ) { 5656 $filtered = _sanitize_text_fields( $str, true ); 5657 5658 /** 5659 * Filters a sanitized textarea field string. 5660 * 5661 * @since 4.7.0 5662 * 5663 * @param string $filtered The sanitized string. 5664 * @param string $str The string prior to being sanitized. 5665 */ 5666 return apply_filters( 'sanitize_textarea_field', $filtered, $str ); 5667 } 5668 5669 /** 5670 * Internal helper function to sanitize a string from user input or from the database. 5671 * 5672 * @since 4.7.0 5673 * @access private 5674 * 5675 * @param string $str String to sanitize. 5676 * @param bool $keep_newlines Optional. Whether to keep newlines. Default: false. 5677 * @return string Sanitized string. 5678 */ 5679 function _sanitize_text_fields( $str, $keep_newlines = false ) { 5680 if ( is_object( $str ) || is_array( $str ) ) { 5681 return ''; 5682 } 5683 5684 $str = (string) $str; 5685 5686 $filtered = wp_check_invalid_utf8( $str ); 5687 5688 if ( str_contains( $filtered, '<' ) ) { 5689 $filtered = wp_pre_kses_less_than( $filtered ); 5690 // This will strip extra whitespace for us. 5691 $filtered = wp_strip_all_tags( $filtered, false ); 5692 5693 /* 5694 * Use HTML entities in a special case to make sure that 5695 * later newline stripping stages cannot lead to a functional tag. 5696 */ 5697 $filtered = str_replace( "<\n", "<\n", $filtered ); 5698 } 5699 5700 if ( ! $keep_newlines ) { 5701 $filtered = preg_replace( '/[\r\n\t ]+/', ' ', $filtered ); 5702 } 5703 $filtered = trim( $filtered ); 5704 5705 // Remove percent-encoded characters. 5706 $found = false; 5707 while ( preg_match( '/%[a-f0-9]{2}/i', $filtered, $match ) ) { 5708 $filtered = str_replace( $match[0], '', $filtered ); 5709 $found = true; 5710 } 5711 5712 if ( $found ) { 5713 // Strip out the whitespace that may now exist after removing percent-encoded characters. 5714 $filtered = trim( preg_replace( '/ +/', ' ', $filtered ) ); 5715 } 5716 5717 return $filtered; 5718 } 5719 5720 /** 5721 * i18n-friendly version of basename(). 5722 * 5723 * @since 3.1.0 5724 * 5725 * @param string $path A path. 5726 * @param string $suffix If the filename ends in suffix this will also be cut off. 5727 * @return string 5728 */ 5729 function wp_basename( $path, $suffix = '' ) { 5730 return urldecode( basename( str_replace( array( '%2F', '%5C' ), '/', urlencode( $path ) ), $suffix ) ); 5731 } 5732 5733 // phpcs:disable WordPress.WP.CapitalPDangit.MisspelledInComment,WordPress.WP.CapitalPDangit.MisspelledInText,WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid -- 8-) 5734 /** 5735 * Forever eliminate "Wordpress" from the planet (or at least the little bit we can influence). 5736 * 5737 * Violating our coding standards for a good function name. 5738 * 5739 * @since 3.0.0 5740 * 5741 * @param string $text The text to be modified. 5742 * @return string The modified text. 5743 */ 5744 function capital_P_dangit( $text ) { 5745 // Simple replacement for titles. 5746 $current_filter = current_filter(); 5747 if ( 'the_title' === $current_filter || 'wp_title' === $current_filter ) { 5748 return str_replace( 'Wordpress', 'WordPress', $text ); 5749 } 5750 // Still here? Use the more judicious replacement. 5751 static $dblq = false; 5752 if ( false === $dblq ) { 5753 $dblq = _x( '“', 'opening curly double quote' ); 5754 } 5755 return str_replace( 5756 array( ' Wordpress', '‘Wordpress', $dblq . 'Wordpress', '>Wordpress', '(Wordpress' ), 5757 array( ' WordPress', '‘WordPress', $dblq . 'WordPress', '>WordPress', '(WordPress' ), 5758 $text 5759 ); 5760 } 5761 // phpcs:enable 5762 5763 /** 5764 * Sanitizes a mime type 5765 * 5766 * @since 3.1.3 5767 * 5768 * @param string $mime_type Mime type. 5769 * @return string Sanitized mime type. 5770 */ 5771 function sanitize_mime_type( $mime_type ) { 5772 $sani_mime_type = preg_replace( '/[^-+*.a-zA-Z0-9\/]/', '', $mime_type ); 5773 /** 5774 * Filters a mime type following sanitization. 5775 * 5776 * @since 3.1.3 5777 * 5778 * @param string $sani_mime_type The sanitized mime type. 5779 * @param string $mime_type The mime type prior to sanitization. 5780 */ 5781 return apply_filters( 'sanitize_mime_type', $sani_mime_type, $mime_type ); 5782 } 5783 5784 /** 5785 * Sanitizes space or carriage return separated URLs that are used to send trackbacks. 5786 * 5787 * @since 3.4.0 5788 * 5789 * @param string $to_ping Space or carriage return separated URLs 5790 * @return string URLs starting with the http or https protocol, separated by a carriage return. 5791 */ 5792 function sanitize_trackback_urls( $to_ping ) { 5793 $urls_to_ping = preg_split( '/[\r\n\t ]/', trim( $to_ping ), -1, PREG_SPLIT_NO_EMPTY ); 5794 foreach ( $urls_to_ping as $k => $url ) { 5795 if ( ! preg_match( '#^https?://.#i', $url ) ) { 5796 unset( $urls_to_ping[ $k ] ); 5797 } 5798 } 5799 $urls_to_ping = array_map( 'sanitize_url', $urls_to_ping ); 5800 $urls_to_ping = implode( "\n", $urls_to_ping ); 5801 /** 5802 * Filters a list of trackback URLs following sanitization. 5803 * 5804 * The string returned here consists of a space or carriage return-delimited list 5805 * of trackback URLs. 5806 * 5807 * @since 3.4.0 5808 * 5809 * @param string $urls_to_ping Sanitized space or carriage return separated URLs. 5810 * @param string $to_ping Space or carriage return separated URLs before sanitization. 5811 */ 5812 return apply_filters( 'sanitize_trackback_urls', $urls_to_ping, $to_ping ); 5813 } 5814 5815 /** 5816 * Adds slashes to a string or recursively adds slashes to strings within an array. 5817 * 5818 * This should be used when preparing data for core API that expects slashed data. 5819 * This should not be used to escape data going directly into an SQL query. 5820 * 5821 * @since 3.6.0 5822 * @since 5.5.0 Non-string values are left untouched. 5823 * 5824 * @param string|array $value String or array of data to slash. 5825 * @return string|array Slashed `$value`, in the same type as supplied. 5826 */ 5827 function wp_slash( $value ) { 5828 if ( is_array( $value ) ) { 5829 $value = array_map( 'wp_slash', $value ); 5830 } 5831 5832 if ( is_string( $value ) ) { 5833 return addslashes( $value ); 5834 } 5835 5836 return $value; 5837 } 5838 5839 /** 5840 * Removes slashes from a string or recursively removes slashes from strings within an array. 5841 * 5842 * This should be used to remove slashes from data passed to core API that 5843 * expects data to be unslashed. 5844 * 5845 * @since 3.6.0 5846 * 5847 * @param string|array $value String or array of data to unslash. 5848 * @return string|array Unslashed `$value`, in the same type as supplied. 5849 */ 5850 function wp_unslash( $value ) { 5851 return stripslashes_deep( $value ); 5852 } 5853 5854 /** 5855 * Extracts and returns the first URL from passed content. 5856 * 5857 * @since 3.6.0 5858 * 5859 * @param string $content A string which might contain an `A` element with a non-empty `href` attribute. 5860 * @return string|false Database-escaped URL via {@see esc_url()} if found, otherwise `false`. 5861 */ 5862 function get_url_in_content( $content ) { 5863 if ( empty( $content ) ) { 5864 return false; 5865 } 5866 5867 $processor = new WP_HTML_Tag_Processor( $content ); 5868 while ( $processor->next_tag( 'A' ) ) { 5869 $href = $processor->get_attribute( 'href' ); 5870 if ( is_string( $href ) && '' !== $href ) { 5871 return sanitize_url( $href ); 5872 } 5873 } 5874 5875 return false; 5876 } 5877 5878 /** 5879 * Returns the regexp for common whitespace characters. 5880 * 5881 * By default, spaces include new lines, tabs, nbsp entities, and the UTF-8 nbsp. 5882 * This is designed to replace the PCRE \s sequence. In ticket #22692, that 5883 * sequence was found to be unreliable due to random inclusion of the A0 byte. 5884 * 5885 * @since 4.0.0 5886 * 5887 * @return string The spaces regexp. 5888 */ 5889 function wp_spaces_regexp() { 5890 static $spaces = ''; 5891 5892 if ( empty( $spaces ) ) { 5893 /** 5894 * Filters the regexp for common whitespace characters. 5895 * 5896 * This string is substituted for the \s sequence as needed in regular 5897 * expressions. For websites not written in English, different characters 5898 * may represent whitespace. For websites not encoded in UTF-8, the 0xC2 0xA0 5899 * sequence may not be in use. 5900 * 5901 * @since 4.0.0 5902 * 5903 * @param string $spaces Regexp pattern for matching common whitespace characters. 5904 */ 5905 $spaces = apply_filters( 'wp_spaces_regexp', '[\r\n\t ]|\xC2\xA0| ' ); 5906 } 5907 5908 return $spaces; 5909 } 5910 5911 /** 5912 * Enqueues the important emoji-related styles. 5913 * 5914 * @since 6.4.0 5915 */ 5916 function wp_enqueue_emoji_styles() { 5917 // Back-compat for plugins that disable functionality by unhooking this action. 5918 $action = is_admin() ? 'admin_print_styles' : 'wp_print_styles'; 5919 if ( ! has_action( $action, 'print_emoji_styles' ) ) { 5920 return; 5921 } 5922 remove_action( $action, 'print_emoji_styles' ); 5923 5924 $emoji_styles = ' 5925 img.wp-smiley, img.emoji { 5926 display: inline !important; 5927 border: none !important; 5928 box-shadow: none !important; 5929 height: 1em !important; 5930 width: 1em !important; 5931 margin: 0 0.07em !important; 5932 vertical-align: -0.1em !important; 5933 background: none !important; 5934 padding: 0 !important; 5935 }'; 5936 $handle = 'wp-emoji-styles'; 5937 wp_register_style( $handle, false ); 5938 wp_add_inline_style( $handle, $emoji_styles ); 5939 wp_enqueue_style( $handle ); 5940 } 5941 5942 /** 5943 * Prints the inline Emoji detection script if it is not already printed. 5944 * 5945 * @since 4.2.0 5946 */ 5947 function print_emoji_detection_script() { 5948 static $printed = false; 5949 5950 if ( $printed ) { 5951 return; 5952 } 5953 5954 $printed = true; 5955 5956 _print_emoji_detection_script(); 5957 } 5958 5959 /** 5960 * Prints inline Emoji detection script. 5961 * 5962 * @ignore 5963 * @since 4.6.0 5964 * @access private 5965 */ 5966 function _print_emoji_detection_script() { 5967 $settings = array( 5968 /** 5969 * Filters the URL where emoji png images are hosted. 5970 * 5971 * @since 4.2.0 5972 * 5973 * @param string $url The emoji base URL for png images. 5974 */ 5975 'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/16.0.1/72x72/' ), 5976 5977 /** 5978 * Filters the extension of the emoji png files. 5979 * 5980 * @since 4.2.0 5981 * 5982 * @param string $extension The emoji extension for png files. Default .png. 5983 */ 5984 'ext' => apply_filters( 'emoji_ext', '.png' ), 5985 5986 /** 5987 * Filters the URL where emoji SVG images are hosted. 5988 * 5989 * @since 4.6.0 5990 * 5991 * @param string $url The emoji base URL for svg images. 5992 */ 5993 'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/16.0.1/svg/' ), 5994 5995 /** 5996 * Filters the extension of the emoji SVG files. 5997 * 5998 * @since 4.6.0 5999 * 6000 * @param string $extension The emoji extension for svg files. Default .svg. 6001 */ 6002 'svgExt' => apply_filters( 'emoji_svg_ext', '.svg' ), 6003 ); 6004 6005 $version = 'ver=' . get_bloginfo( 'version' ); 6006 6007 if ( SCRIPT_DEBUG ) { 6008 $settings['source'] = array( 6009 /** This filter is documented in wp-includes/class-wp-scripts.php */ 6010 'wpemoji' => apply_filters( 'script_loader_src', includes_url( "js/wp-emoji.js?$version" ), 'wpemoji' ), 6011 /** This filter is documented in wp-includes/class-wp-scripts.php */ 6012 'twemoji' => apply_filters( 'script_loader_src', includes_url( "js/twemoji.js?$version" ), 'twemoji' ), 6013 ); 6014 } else { 6015 $settings['source'] = array( 6016 /** This filter is documented in wp-includes/class-wp-scripts.php */ 6017 'concatemoji' => apply_filters( 'script_loader_src', includes_url( "js/wp-emoji-release.min.js?$version" ), 'concatemoji' ), 6018 ); 6019 } 6020 6021 wp_print_inline_script_tag( 6022 sprintf( 'window._wpemojiSettings = %s;', wp_json_encode( $settings ) ) . "\n" . 6023 file_get_contents( ABSPATH . WPINC . '/js/wp-emoji-loader' . wp_scripts_get_suffix() . '.js' ) 6024 ); 6025 } 6026 6027 /** 6028 * Converts emoji characters to their equivalent HTML entity. 6029 * 6030 * This allows us to store emoji in a DB using the utf8 character set. 6031 * 6032 * @since 4.2.0 6033 * 6034 * @param string $content The content to encode. 6035 * @return string The encoded content. 6036 */ 6037 function wp_encode_emoji( $content ) { 6038 $emoji = _wp_emoji_list( 'partials' ); 6039 6040 foreach ( $emoji as $emojum ) { 6041 $emoji_char = html_entity_decode( $emojum ); 6042 if ( str_contains( $content, $emoji_char ) ) { 6043 $content = preg_replace( "/$emoji_char/", $emojum, $content ); 6044 } 6045 } 6046 6047 return $content; 6048 } 6049 6050 /** 6051 * Converts emoji to a static img element. 6052 * 6053 * @since 4.2.0 6054 * 6055 * @param string $text The content to encode. 6056 * @return string The encoded content. 6057 */ 6058 function wp_staticize_emoji( $text ) { 6059 if ( ! str_contains( $text, '&#x' ) ) { 6060 if ( ( function_exists( 'mb_check_encoding' ) && mb_check_encoding( $text, 'ASCII' ) ) || ! preg_match( '/[^\x00-\x7F]/', $text ) ) { 6061 // The text doesn't contain anything that might be emoji, so we can return early. 6062 return $text; 6063 } else { 6064 $encoded_text = wp_encode_emoji( $text ); 6065 if ( $encoded_text === $text ) { 6066 return $encoded_text; 6067 } 6068 6069 $text = $encoded_text; 6070 } 6071 } 6072 6073 $emoji = _wp_emoji_list( 'entities' ); 6074 6075 // Quickly narrow down the list of emoji that might be in the text and need replacing. 6076 $possible_emoji = array(); 6077 foreach ( $emoji as $emojum ) { 6078 if ( str_contains( $text, $emojum ) ) { 6079 $possible_emoji[ $emojum ] = html_entity_decode( $emojum ); 6080 } 6081 } 6082 6083 if ( ! $possible_emoji ) { 6084 return $text; 6085 } 6086 6087 /** This filter is documented in wp-includes/formatting.php */ 6088 $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/16.0.1/72x72/' ); 6089 6090 /** This filter is documented in wp-includes/formatting.php */ 6091 $ext = apply_filters( 'emoji_ext', '.png' ); 6092 6093 $output = ''; 6094 /* 6095 * HTML loop taken from smiley function, which was taken from texturize function. 6096 * It'll never be consolidated. 6097 * 6098 * First, capture the tags as well as in between. 6099 */ 6100 $textarr = preg_split( '/(<.*>)/U', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); 6101 $stop = count( $textarr ); 6102 6103 // Ignore processing of specific tags. 6104 $tags_to_ignore = 'code|pre|style|script|textarea'; 6105 $ignore_block_element = ''; 6106 6107 for ( $i = 0; $i < $stop; $i++ ) { 6108 $content = $textarr[ $i ]; 6109 6110 // If we're in an ignore block, wait until we find its closing tag. 6111 if ( '' === $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')>/', $content, $matches ) ) { 6112 $ignore_block_element = $matches[1]; 6113 } 6114 6115 // If it's not a tag and not in ignore block. 6116 if ( '' === $ignore_block_element && strlen( $content ) > 0 && '<' !== $content[0] && str_contains( $content, '&#x' ) ) { 6117 foreach ( $possible_emoji as $emojum => $emoji_char ) { 6118 if ( ! str_contains( $content, $emojum ) ) { 6119 continue; 6120 } 6121 6122 $file = str_replace( ';&#x', '-', $emojum ); 6123 $file = str_replace( array( '&#x', ';' ), '', $file ); 6124 6125 $entity = sprintf( '<img src="%s" alt="%s" class="wp-smiley" style="height: 1em; max-height: 1em;" />', $cdn_url . $file . $ext, $emoji_char ); 6126 6127 $content = str_replace( $emojum, $entity, $content ); 6128 } 6129 } 6130 6131 // Did we exit ignore block? 6132 if ( '' !== $ignore_block_element && '</' . $ignore_block_element . '>' === $content ) { 6133 $ignore_block_element = ''; 6134 } 6135 6136 $output .= $content; 6137 } 6138 6139 // Finally, remove any stray U+FE0F characters. 6140 $output = str_replace( '️', '', $output ); 6141 6142 return $output; 6143 } 6144 6145 /** 6146 * Converts emoji in emails into static images. 6147 * 6148 * @since 4.2.0 6149 * 6150 * @param array $mail The email data array. 6151 * @return array The email data array, with emoji in the message staticized. 6152 */ 6153 function wp_staticize_emoji_for_email( $mail ) { 6154 if ( ! isset( $mail['message'] ) ) { 6155 return $mail; 6156 } 6157 6158 /* 6159 * We can only transform the emoji into images if it's a `text/html` email. 6160 * To do that, here's a cut down version of the same process that happens 6161 * in wp_mail() - get the `Content-Type` from the headers, if there is one, 6162 * then pass it through the {@see 'wp_mail_content_type'} filter, in case 6163 * a plugin is handling changing the `Content-Type`. 6164 */ 6165 $headers = array(); 6166 if ( isset( $mail['headers'] ) ) { 6167 if ( is_array( $mail['headers'] ) ) { 6168 $headers = $mail['headers']; 6169 } else { 6170 $headers = explode( "\n", str_replace( "\r\n", "\n", $mail['headers'] ) ); 6171 } 6172 } 6173 6174 foreach ( $headers as $header ) { 6175 if ( ! str_contains( $header, ':' ) ) { 6176 continue; 6177 } 6178 6179 // Explode them out. 6180 list( $name, $content ) = explode( ':', trim( $header ), 2 ); 6181 6182 // Cleanup crew. 6183 $name = trim( $name ); 6184 $content = trim( $content ); 6185 6186 if ( 'content-type' === strtolower( $name ) ) { 6187 if ( str_contains( $content, ';' ) ) { 6188 list( $type, $charset ) = explode( ';', $content ); 6189 $content_type = trim( $type ); 6190 } else { 6191 $content_type = trim( $content ); 6192 } 6193 break; 6194 } 6195 } 6196 6197 // Set Content-Type if we don't have a content-type from the input headers. 6198 if ( ! isset( $content_type ) ) { 6199 $content_type = 'text/plain'; 6200 } 6201 6202 /** This filter is documented in wp-includes/pluggable.php */ 6203 $content_type = apply_filters( 'wp_mail_content_type', $content_type ); 6204 6205 if ( 'text/html' === $content_type ) { 6206 $mail['message'] = wp_staticize_emoji( $mail['message'] ); 6207 } 6208 6209 return $mail; 6210 } 6211 6212 /** 6213 * Returns arrays of emoji data. 6214 * 6215 * These arrays are automatically built from the regex in twemoji.js - if they need to be updated, 6216 * you should update the regex there, then run the `npm run grunt precommit:emoji` job. 6217 * 6218 * @since 4.9.0 6219 * @access private 6220 * 6221 * @param string $type Optional. Which array type to return. Accepts 'partials' or 'entities', default 'entities'. 6222 * @return array An array to match all emoji that WordPress recognises. 6223 */ 6224 function _wp_emoji_list( $type = 'entities' ) { 6225 // Do not remove the START/END comments - they're used to find where to insert the arrays. 6226 6227 // START: emoji arrays 6228 $entities = array( '👨🏻‍❤️‍💋‍👨🏻', '👨🏻‍❤️‍💋‍👨🏼', '👨🏻‍❤️‍💋‍👨🏽', '👨🏻‍❤️‍💋‍👨🏾', '👨🏻‍❤️‍💋‍👨🏿', '👨🏼‍❤️‍💋‍👨🏻', '👨🏼‍❤️‍💋‍👨🏼', '👨🏼‍❤️‍💋‍👨🏽', '👨🏼‍❤️‍💋‍👨🏾', '👨🏼‍❤️‍💋‍👨🏿', '👨🏽‍❤️‍💋‍👨🏻', '👨🏽‍❤️‍💋‍👨🏼', '👨🏽‍❤️‍💋‍👨🏽', '👨🏽‍❤️‍💋‍👨🏾', '👨🏽‍❤️‍💋‍👨🏿', '👨🏾‍❤️‍💋‍👨🏻', '👨🏾‍❤️‍💋‍👨🏼', '👨🏾‍❤️‍💋‍👨🏽', '👨🏾‍❤️‍💋‍👨🏾', '👨🏾‍❤️‍💋‍👨🏿', '👨🏿‍❤️‍💋‍👨🏻', '👨🏿‍❤️‍💋‍👨🏼', '👨🏿‍❤️‍💋‍👨🏽', '👨🏿‍❤️‍💋‍👨🏾', '👨🏿‍❤️‍💋‍👨🏿', '👩🏻‍❤️‍💋‍👨🏻', '👩🏻‍❤️‍💋‍👨🏼', '👩🏻‍❤️‍💋‍👨🏽', '👩🏻‍❤️‍💋‍👨🏾', '👩🏻‍❤️‍💋‍👨🏿', '👩🏻‍❤️‍💋‍👩🏻', '👩🏻‍❤️‍💋‍👩🏼', '👩🏻‍❤️‍💋‍👩🏽', '👩🏻‍❤️‍💋‍👩🏾', '👩🏻‍❤️‍💋‍👩🏿', '👩🏼‍❤️‍💋‍👨🏻', '👩🏼‍❤️‍💋‍👨🏼', '👩🏼‍❤️‍💋‍👨🏽', '👩🏼‍❤️‍💋‍👨🏾', '👩🏼‍❤️‍💋‍👨🏿', '👩🏼‍❤️‍💋‍👩🏻', '👩🏼‍❤️‍💋‍👩🏼', '👩🏼‍❤️‍💋‍👩🏽', '👩🏼‍❤️‍💋‍👩🏾', '👩🏼‍❤️‍💋‍👩🏿', '👩🏽‍❤️‍💋‍👨🏻', '👩🏽‍❤️‍💋‍👨🏼', '👩🏽‍❤️‍💋‍👨🏽', '👩🏽‍❤️‍💋‍👨🏾', '👩🏽‍❤️‍💋‍👨🏿', '👩🏽‍❤️‍💋‍👩🏻', '👩🏽‍❤️‍💋‍👩🏼', '👩🏽‍❤️‍💋‍👩🏽', '👩🏽‍❤️‍💋‍👩🏾', '👩🏽‍❤️‍💋‍👩🏿', '👩🏾‍❤️‍💋‍👨🏻', '👩🏾‍❤️‍💋‍👨🏼', '👩🏾‍❤️‍💋‍👨🏽', '👩🏾‍❤️‍💋‍👨🏾', '👩🏾‍❤️‍💋‍👨🏿', '👩🏾‍❤️‍💋‍👩🏻', '👩🏾‍❤️‍💋‍👩🏼', '👩🏾‍❤️‍💋‍👩🏽', '👩🏾‍❤️‍💋‍👩🏾', '👩🏾‍❤️‍💋‍👩🏿', '👩🏿‍❤️‍💋‍👨🏻', '👩🏿‍❤️‍💋‍👨🏼', '👩🏿‍❤️‍💋‍👨🏽', '👩🏿‍❤️‍💋‍👨🏾', '👩🏿‍❤️‍💋‍👨🏿', '👩🏿‍❤️‍💋‍👩🏻', '👩🏿‍❤️‍💋‍👩🏼', '👩🏿‍❤️‍💋‍👩🏽', '👩🏿‍❤️‍💋‍👩🏾', '👩🏿‍❤️‍💋‍👩🏿', '🧑🏻‍❤️‍💋‍🧑🏼', '🧑🏻‍❤️‍💋‍🧑🏽', '🧑🏻‍❤️‍💋‍🧑🏾', '🧑🏻‍❤️‍💋‍🧑🏿', '🧑🏼‍❤️‍💋‍🧑🏻', '🧑🏼‍❤️‍💋‍🧑🏽', '🧑🏼‍❤️‍💋‍🧑🏾', '🧑🏼‍❤️‍💋‍🧑🏿', '🧑🏽‍❤️‍💋‍🧑🏻', '🧑🏽‍❤️‍💋‍🧑🏼', '🧑🏽‍❤️‍💋‍🧑🏾', '🧑🏽‍❤️‍💋‍🧑🏿', '🧑🏾‍❤️‍💋‍🧑🏻', '🧑🏾‍❤️‍💋‍🧑🏼', '🧑🏾‍❤️‍💋‍🧑🏽', '🧑🏾‍❤️‍💋‍🧑🏿', '🧑🏿‍❤️‍💋‍🧑🏻', '🧑🏿‍❤️‍💋‍🧑🏼', '🧑🏿‍❤️‍💋‍🧑🏽', '🧑🏿‍❤️‍💋‍🧑🏾', '👨🏻‍❤️‍👨🏻', '👨🏻‍❤️‍👨🏼', '👨🏻‍❤️‍👨🏽', '👨🏻‍❤️‍👨🏾', '👨🏻‍❤️‍👨🏿', '👨🏼‍❤️‍👨🏻', '👨🏼‍❤️‍👨🏼', '👨🏼‍❤️‍👨🏽', '👨🏼‍❤️‍👨🏾', '👨🏼‍❤️‍👨🏿', '👨🏽‍❤️‍👨🏻', '👨🏽‍❤️‍👨🏼', '👨🏽‍❤️‍👨🏽', '👨🏽‍❤️‍👨🏾', '👨🏽‍❤️‍👨🏿', '👨🏾‍❤️‍👨🏻', '👨🏾‍❤️‍👨🏼', '👨🏾‍❤️‍👨🏽', '👨🏾‍❤️‍👨🏾', '👨🏾‍❤️‍👨🏿', '👨🏿‍❤️‍👨🏻', '👨🏿‍❤️‍👨🏼', '👨🏿‍❤️‍👨🏽', '👨🏿‍❤️‍👨🏾', '👨🏿‍❤️‍👨🏿', '👩🏻‍❤️‍👨🏻', '👩🏻‍❤️‍👨🏼', '👩🏻‍❤️‍👨🏽', '👩🏻‍❤️‍👨🏾', '👩🏻‍❤️‍👨🏿', '👩🏻‍❤️‍👩🏻', '👩🏻‍❤️‍👩🏼', '👩🏻‍❤️‍👩🏽', '👩🏻‍❤️‍👩🏾', '👩🏻‍❤️‍👩🏿', '👩🏼‍❤️‍👨🏻', '👩🏼‍❤️‍👨🏼', '👩🏼‍❤️‍👨🏽', '👩🏼‍❤️‍👨🏾', '👩🏼‍❤️‍👨🏿', '👩🏼‍❤️‍👩🏻', '👩🏼‍❤️‍👩🏼', '👩🏼‍❤️‍👩🏽', '👩🏼‍❤️‍👩🏾', '👩🏼‍❤️‍👩🏿', '👩🏽‍❤️‍👨🏻', '👩🏽‍❤️‍👨🏼', '👩🏽‍❤️‍👨🏽', '👩🏽‍❤️‍👨🏾', '👩🏽‍❤️‍👨🏿', '👩🏽‍❤️‍👩🏻', '👩🏽‍❤️‍👩🏼', '👩🏽‍❤️‍👩🏽', '👩🏽‍❤️‍👩🏾', '👩🏽‍❤️‍👩🏿', '👩🏾‍❤️‍👨🏻', '👩🏾‍❤️‍👨🏼', '👩🏾‍❤️‍👨🏽', '👩🏾‍❤️‍👨🏾', '👩🏾‍❤️‍👨🏿', '👩🏾‍❤️‍👩🏻', '👩🏾‍❤️‍👩🏼', '👩🏾‍❤️‍👩🏽', '👩🏾‍❤️‍👩🏾', '👩🏾‍❤️‍👩🏿', '👩🏿‍❤️‍👨🏻', '👩🏿‍❤️‍👨🏼', '👩🏿‍❤️‍👨🏽', '👩🏿‍❤️‍👨🏾', '👩🏿‍❤️‍👨🏿', '👩🏿‍❤️‍👩🏻', '👩🏿‍❤️‍👩🏼', '👩🏿‍❤️‍👩🏽', '👩🏿‍❤️‍👩🏾', '👩🏿‍❤️‍👩🏿', '🧑🏻‍❤️‍🧑🏼', '🧑🏻‍❤️‍🧑🏽', '🧑🏻‍❤️‍🧑🏾', '🧑🏻‍❤️‍🧑🏿', '🧑🏼‍❤️‍🧑🏻', '🧑🏼‍❤️‍🧑🏽', '🧑🏼‍❤️‍🧑🏾', '🧑🏼‍❤️‍🧑🏿', '🧑🏽‍❤️‍🧑🏻', '🧑🏽‍❤️‍🧑🏼', '🧑🏽‍❤️‍🧑🏾', '🧑🏽‍❤️‍🧑🏿', '🧑🏾‍❤️‍🧑🏻', '🧑🏾‍❤️‍🧑🏼', '🧑🏾‍❤️‍🧑🏽', '🧑🏾‍❤️‍🧑🏿', '🧑🏿‍❤️‍🧑🏻', '🧑🏿‍❤️‍🧑🏼', '🧑🏿‍❤️‍🧑🏽', '🧑🏿‍❤️‍🧑🏾', '👨‍❤️‍💋‍👨', '👩‍❤️‍💋‍👨', '👩‍❤️‍💋‍👩', '🏃🏻‍♀️‍➡️', '🏃🏻‍♂️‍➡️', '🏃🏼‍♀️‍➡️', '🏃🏼‍♂️‍➡️', '🏃🏽‍♀️‍➡️', '🏃🏽‍♂️‍➡️', '🏃🏾‍♀️‍➡️', '🏃🏾‍♂️‍➡️', '🏃🏿‍♀️‍➡️', '🏃🏿‍♂️‍➡️', '🚶🏻‍♀️‍➡️', '🚶🏻‍♂️‍➡️', '🚶🏼‍♀️‍➡️', '🚶🏼‍♂️‍➡️', '🚶🏽‍♀️‍➡️', '🚶🏽‍♂️‍➡️', '🚶🏾‍♀️‍➡️', '🚶🏾‍♂️‍➡️', '🚶🏿‍♀️‍➡️', '🚶🏿‍♂️‍➡️', '🧎🏻‍♀️‍➡️', '🧎🏻‍♂️‍➡️', '🧎🏼‍♀️‍➡️', '🧎🏼‍♂️‍➡️', '🧎🏽‍♀️‍➡️', '🧎🏽‍♂️‍➡️', '🧎🏾‍♀️‍➡️', '🧎🏾‍♂️‍➡️', '🧎🏿‍♀️‍➡️', '🧎🏿‍♂️‍➡️', '🏴󠁧󠁢󠁥󠁮󠁧󠁿', '🏴󠁧󠁢󠁳󠁣󠁴󠁿', '🏴󠁧󠁢󠁷󠁬󠁳󠁿', '👨🏻‍🤝‍👨🏼', '👨🏻‍🤝‍👨🏽', '👨🏻‍🤝‍👨🏾', '👨🏻‍🤝‍👨🏿', '👨🏼‍🤝‍👨🏻', '👨🏼‍🤝‍👨🏽', '👨🏼‍🤝‍👨🏾', '👨🏼‍🤝‍👨🏿', '👨🏽‍🤝‍👨🏻', '👨🏽‍🤝‍👨🏼', '👨🏽‍🤝‍👨🏾', '👨🏽‍🤝‍👨🏿', '👨🏾‍🤝‍👨🏻', '👨🏾‍🤝‍👨🏼', '👨🏾‍🤝‍👨🏽', '👨🏾‍🤝‍👨🏿', '👨🏿‍🤝‍👨🏻', '👨🏿‍🤝‍👨🏼', '👨🏿‍🤝‍👨🏽', '👨🏿‍🤝‍👨🏾', '👩🏻‍🤝‍👨🏼', '👩🏻‍🤝‍👨🏽', '👩🏻‍🤝‍👨🏾', '👩🏻‍🤝‍👨🏿', '👩🏻‍🤝‍👩🏼', '👩🏻‍🤝‍👩🏽', '👩🏻‍🤝‍👩🏾', '👩🏻‍🤝‍👩🏿', '👩🏼‍🤝‍👨🏻', '👩🏼‍🤝‍👨🏽', '👩🏼‍🤝‍👨🏾', '👩🏼‍🤝‍👨🏿', '👩🏼‍🤝‍👩🏻', '👩🏼‍🤝‍👩🏽', '👩🏼‍🤝‍👩🏾', '👩🏼‍🤝‍👩🏿', '👩🏽‍🤝‍👨🏻', '👩🏽‍🤝‍👨🏼', '👩🏽‍🤝‍👨🏾', '👩🏽‍🤝‍👨🏿', '👩🏽‍🤝‍👩🏻', '👩🏽‍🤝‍👩🏼', '👩🏽‍🤝‍👩🏾', '👩🏽‍🤝‍👩🏿', '👩🏾‍🤝‍👨🏻', '👩🏾‍🤝‍👨🏼', '👩🏾‍🤝‍👨🏽', '👩🏾‍🤝‍👨🏿', '👩🏾‍🤝‍👩🏻', '👩🏾‍🤝‍👩🏼', '👩🏾‍🤝‍👩🏽', '👩🏾‍🤝‍👩🏿', '👩🏿‍🤝‍👨🏻', '👩🏿‍🤝‍👨🏼', '👩🏿‍🤝‍👨🏽', '👩🏿‍🤝‍👨🏾', '👩🏿‍🤝‍👩🏻', '👩🏿‍🤝‍👩🏼', '👩🏿‍🤝‍👩🏽', '👩🏿‍🤝‍👩🏾', '🧑🏻‍🤝‍🧑🏻', '🧑🏻‍🤝‍🧑🏼', '🧑🏻‍🤝‍🧑🏽', '🧑🏻‍🤝‍🧑🏾', '🧑🏻‍🤝‍🧑🏿', '🧑🏼‍🤝‍🧑🏻', '🧑🏼‍🤝‍🧑🏼', '🧑🏼‍🤝‍🧑🏽', '🧑🏼‍🤝‍🧑🏾', '🧑🏼‍🤝‍🧑🏿', '🧑🏽‍🤝‍🧑🏻', '🧑🏽‍🤝‍🧑🏼', '🧑🏽‍🤝‍🧑🏽', '🧑🏽‍🤝‍🧑🏾', '🧑🏽‍🤝‍🧑🏿', '🧑🏾‍🤝‍🧑🏻', '🧑🏾‍🤝‍🧑🏼', '🧑🏾‍🤝‍🧑🏽', '🧑🏾‍🤝‍🧑🏾', '🧑🏾‍🤝‍🧑🏿', '🧑🏿‍🤝‍🧑🏻', '🧑🏿‍🤝‍🧑🏼', '🧑🏿‍🤝‍🧑🏽', '🧑🏿‍🤝‍🧑🏾', '🧑🏿‍🤝‍🧑🏿', '👨‍👨‍👦‍👦', '👨‍👨‍👧‍👦', '👨‍👨‍👧‍👧', '👨‍👩‍👦‍👦', '👨‍👩‍👧‍👦', '👨‍👩‍👧‍👧', '👩‍👩‍👦‍👦', '👩‍👩‍👧‍👦', '👩‍👩‍👧‍👧', '🧑‍🧑‍🧒‍🧒', '👨🏻‍🦯‍➡️', '👨🏻‍🦼‍➡️', '👨🏻‍🦽‍➡️', '👨🏼‍🦯‍➡️', '👨🏼‍🦼‍➡️', '👨🏼‍🦽‍➡️', '👨🏽‍🦯‍➡️', '👨🏽‍🦼‍➡️', '👨🏽‍🦽‍➡️', '👨🏾‍🦯‍➡️', '👨🏾‍🦼‍➡️', '👨🏾‍🦽‍➡️', '👨🏿‍🦯‍➡️', '👨🏿‍🦼‍➡️', '👨🏿‍🦽‍➡️', '👩🏻‍🦯‍➡️', '👩🏻‍🦼‍➡️', '👩🏻‍🦽‍➡️', '👩🏼‍🦯‍➡️', '👩🏼‍🦼‍➡️', '👩🏼‍🦽‍➡️', '👩🏽‍🦯‍➡️', '👩🏽‍🦼‍➡️', '👩🏽‍🦽‍➡️', '👩🏾‍🦯‍➡️', '👩🏾‍🦼‍➡️', '👩🏾‍🦽‍➡️', '👩🏿‍🦯‍➡️', '👩🏿‍🦼‍➡️', '👩🏿‍🦽‍➡️', '🧑🏻‍🦯‍➡️', '🧑🏻‍🦼‍➡️', '🧑🏻‍🦽‍➡️', '🧑🏼‍🦯‍➡️', '🧑🏼‍🦼‍➡️', '🧑🏼‍🦽‍➡️', '🧑🏽‍🦯‍➡️', '🧑🏽‍🦼‍➡️', '🧑🏽‍🦽‍➡️', '🧑🏾‍🦯‍➡️', '🧑🏾‍🦼‍➡️', '🧑🏾‍🦽‍➡️', '🧑🏿‍🦯‍➡️', '🧑🏿‍🦼‍➡️', '🧑🏿‍🦽‍➡️', '🏃‍♀️‍➡️', '🏃‍♂️‍➡️', '🚶‍♀️‍➡️', '🚶‍♂️‍➡️', '🧎‍♀️‍➡️', '🧎‍♂️‍➡️', '👨‍🦯‍➡️', '👨‍🦼‍➡️', '👨‍🦽‍➡️', '👨‍❤️‍👨', '👩‍🦯‍➡️', '👩‍🦼‍➡️', '👩‍🦽‍➡️', '👩‍❤️‍👨', '👩‍❤️‍👩', '🧑‍🦯‍➡️', '🧑‍🦼‍➡️', '🧑‍🦽‍➡️', '🫱🏻‍🫲🏼', '🫱🏻‍🫲🏽', '🫱🏻‍🫲🏾', '🫱🏻‍🫲🏿', '🫱🏼‍🫲🏻', '🫱🏼‍🫲🏽', '🫱🏼‍🫲🏾', '🫱🏼‍🫲🏿', '🫱🏽‍🫲🏻', '🫱🏽‍🫲🏼', '🫱🏽‍🫲🏾', '🫱🏽‍🫲🏿', '🫱🏾‍🫲🏻', '🫱🏾‍🫲🏼', '🫱🏾‍🫲🏽', '🫱🏾‍🫲🏿', '🫱🏿‍🫲🏻', '🫱🏿‍🫲🏼', '🫱🏿‍🫲🏽', '🫱🏿‍🫲🏾', '👨‍👦‍👦', '👨‍👧‍👦', '👨‍👧‍👧', '👨‍👨‍👦', '👨‍👨‍👧', '👨‍👩‍👦', '👨‍👩‍👧', '👩‍👦‍👦', '👩‍👧‍👦', '👩‍👧‍👧', '👩‍👩‍👦', '👩‍👩‍👧', '🧑‍🤝‍🧑', '🧑‍🧑‍🧒', '🧑‍🧒‍🧒', '🏃🏻‍♀️', '🏃🏻‍♂️', '🏃🏻‍➡️', '🏃🏼‍♀️', '🏃🏼‍♂️', '🏃🏼‍➡️', '🏃🏽‍♀️', '🏃🏽‍♂️', '🏃🏽‍➡️', '🏃🏾‍♀️', '🏃🏾‍♂️', '🏃🏾‍➡️', '🏃🏿‍♀️', '🏃🏿‍♂️', '🏃🏿‍➡️', '🏄🏻‍♀️', '🏄🏻‍♂️', '🏄🏼‍♀️', '🏄🏼‍♂️', '🏄🏽‍♀️', '🏄🏽‍♂️', '🏄🏾‍♀️', '🏄🏾‍♂️', '🏄🏿‍♀️', '🏄🏿‍♂️', '🏊🏻‍♀️', '🏊🏻‍♂️', '🏊🏼‍♀️', '🏊🏼‍♂️', '🏊🏽‍♀️', '🏊🏽‍♂️', '🏊🏾‍♀️', '🏊🏾‍♂️', '🏊🏿‍♀️', '🏊🏿‍♂️', '🏋🏻‍♀️', '🏋🏻‍♂️', '🏋🏼‍♀️', '🏋🏼‍♂️', '🏋🏽‍♀️', '🏋🏽‍♂️', '🏋🏾‍♀️', '🏋🏾‍♂️', '🏋🏿‍♀️', '🏋🏿‍♂️', '🏌🏻‍♀️', '🏌🏻‍♂️', '🏌🏼‍♀️', '🏌🏼‍♂️', '🏌🏽‍♀️', '🏌🏽‍♂️', '🏌🏾‍♀️', '🏌🏾‍♂️', '🏌🏿‍♀️', '🏌🏿‍♂️', '👨🏻‍⚕️', '👨🏻‍⚖️', '👨🏻‍✈️', '👨🏼‍⚕️', '👨🏼‍⚖️', '👨🏼‍✈️', '👨🏽‍⚕️', '👨🏽‍⚖️', '👨🏽‍✈️', '👨🏾‍⚕️', '👨🏾‍⚖️', '👨🏾‍✈️', '👨🏿‍⚕️', '👨🏿‍⚖️', '👨🏿‍✈️', '👩🏻‍⚕️', '👩🏻‍⚖️', '👩🏻‍✈️', '👩🏼‍⚕️', '👩🏼‍⚖️', '👩🏼‍✈️', '👩🏽‍⚕️', '👩🏽‍⚖️', '👩🏽‍✈️', '👩🏾‍⚕️', '👩🏾‍⚖️', '👩🏾‍✈️', '👩🏿‍⚕️', '👩🏿‍⚖️', '👩🏿‍✈️', '👮🏻‍♀️', '👮🏻‍♂️', '👮🏼‍♀️', '👮🏼‍♂️', '👮🏽‍♀️', '👮🏽‍♂️', '👮🏾‍♀️', '👮🏾‍♂️', '👮🏿‍♀️', '👮🏿‍♂️', '👰🏻‍♀️', '👰🏻‍♂️', '👰🏼‍♀️', '👰🏼‍♂️', '👰🏽‍♀️', '👰🏽‍♂️', '👰🏾‍♀️', '👰🏾‍♂️', '👰🏿‍♀️', '👰🏿‍♂️', '👱🏻‍♀️', '👱🏻‍♂️', '👱🏼‍♀️', '👱🏼‍♂️', '👱🏽‍♀️', '👱🏽‍♂️', '👱🏾‍♀️', '👱🏾‍♂️', '👱🏿‍♀️', '👱🏿‍♂️', '👳🏻‍♀️', '👳🏻‍♂️', '👳🏼‍♀️', '👳🏼‍♂️', '👳🏽‍♀️', '👳🏽‍♂️', '👳🏾‍♀️', '👳🏾‍♂️', '👳🏿‍♀️', '👳🏿‍♂️', '👷🏻‍♀️', '👷🏻‍♂️', '👷🏼‍♀️', '👷🏼‍♂️', '👷🏽‍♀️', '👷🏽‍♂️', '👷🏾‍♀️', '👷🏾‍♂️', '👷🏿‍♀️', '👷🏿‍♂️', '💁🏻‍♀️', '💁🏻‍♂️', '💁🏼‍♀️', '💁🏼‍♂️', '💁🏽‍♀️', '💁🏽‍♂️', '💁🏾‍♀️', '💁🏾‍♂️', '💁🏿‍♀️', '💁🏿‍♂️', '💂🏻‍♀️', '💂🏻‍♂️', '💂🏼‍♀️', '💂🏼‍♂️', '💂🏽‍♀️', '💂🏽‍♂️', '💂🏾‍♀️', '💂🏾‍♂️', '💂🏿‍♀️', '💂🏿‍♂️', '💆🏻‍♀️', '💆🏻‍♂️', '💆🏼‍♀️', '💆🏼‍♂️', '💆🏽‍♀️', '💆🏽‍♂️', '💆🏾‍♀️', '💆🏾‍♂️', '💆🏿‍♀️', '💆🏿‍♂️', '💇🏻‍♀️', '💇🏻‍♂️', '💇🏼‍♀️', '💇🏼‍♂️', '💇🏽‍♀️', '💇🏽‍♂️', '💇🏾‍♀️', '💇🏾‍♂️', '💇🏿‍♀️', '💇🏿‍♂️', '🕴🏻‍♀️', '🕴🏻‍♂️', '🕴🏼‍♀️', '🕴🏼‍♂️', '🕴🏽‍♀️', '🕴🏽‍♂️', '🕴🏾‍♀️', '🕴🏾‍♂️', '🕴🏿‍♀️', '🕴🏿‍♂️', '🕵🏻‍♀️', '🕵🏻‍♂️', '🕵🏼‍♀️', '🕵🏼‍♂️', '🕵🏽‍♀️', '🕵🏽‍♂️', '🕵🏾‍♀️', '🕵🏾‍♂️', '🕵🏿‍♀️', '🕵🏿‍♂️', '🙅🏻‍♀️', '🙅🏻‍♂️', '🙅🏼‍♀️', '🙅🏼‍♂️', '🙅🏽‍♀️', '🙅🏽‍♂️', '🙅🏾‍♀️', '🙅🏾‍♂️', '🙅🏿‍♀️', '🙅🏿‍♂️', '🙆🏻‍♀️', '🙆🏻‍♂️', '🙆🏼‍♀️', '🙆🏼‍♂️', '🙆🏽‍♀️', '🙆🏽‍♂️', '🙆🏾‍♀️', '🙆🏾‍♂️', '🙆🏿‍♀️', '🙆🏿‍♂️', '🙇🏻‍♀️', '🙇🏻‍♂️', '🙇🏼‍♀️', '🙇🏼‍♂️', '🙇🏽‍♀️', '🙇🏽‍♂️', '🙇🏾‍♀️', '🙇🏾‍♂️', '🙇🏿‍♀️', '🙇🏿‍♂️', '🙋🏻‍♀️', '🙋🏻‍♂️', '🙋🏼‍♀️', '🙋🏼‍♂️', '🙋🏽‍♀️', '🙋🏽‍♂️', '🙋🏾‍♀️', '🙋🏾‍♂️', '🙋🏿‍♀️', '🙋🏿‍♂️', '🙍🏻‍♀️', '🙍🏻‍♂️', '🙍🏼‍♀️', '🙍🏼‍♂️', '🙍🏽‍♀️', '🙍🏽‍♂️', '🙍🏾‍♀️', '🙍🏾‍♂️', '🙍🏿‍♀️', '🙍🏿‍♂️', '🙎🏻‍♀️', '🙎🏻‍♂️', '🙎🏼‍♀️', '🙎🏼‍♂️', '🙎🏽‍♀️', '🙎🏽‍♂️', '🙎🏾‍♀️', '🙎🏾‍♂️', '🙎🏿‍♀️', '🙎🏿‍♂️', '🚣🏻‍♀️', '🚣🏻‍♂️', '🚣🏼‍♀️', '🚣🏼‍♂️', '🚣🏽‍♀️', '🚣🏽‍♂️', '🚣🏾‍♀️', '🚣🏾‍♂️', '🚣🏿‍♀️', '🚣🏿‍♂️', '🚴🏻‍♀️', '🚴🏻‍♂️', '🚴🏼‍♀️', '🚴🏼‍♂️', '🚴🏽‍♀️', '🚴🏽‍♂️', '🚴🏾‍♀️', '🚴🏾‍♂️', '🚴🏿‍♀️', '🚴🏿‍♂️', '🚵🏻‍♀️', '🚵🏻‍♂️', '🚵🏼‍♀️', '🚵🏼‍♂️', '🚵🏽‍♀️', '🚵🏽‍♂️', '🚵🏾‍♀️', '🚵🏾‍♂️', '🚵🏿‍♀️', '🚵🏿‍♂️', '🚶🏻‍♀️', '🚶🏻‍♂️', '🚶🏻‍➡️', '🚶🏼‍♀️', '🚶🏼‍♂️', '🚶🏼‍➡️', '🚶🏽‍♀️', '🚶🏽‍♂️', '🚶🏽‍➡️', '🚶🏾‍♀️', '🚶🏾‍♂️', '🚶🏾‍➡️', '🚶🏿‍♀️', '🚶🏿‍♂️', '🚶🏿‍➡️', '🤦🏻‍♀️', '🤦🏻‍♂️', '🤦🏼‍♀️', '🤦🏼‍♂️', '🤦🏽‍♀️', '🤦🏽‍♂️', '🤦🏾‍♀️', '🤦🏾‍♂️', '🤦🏿‍♀️', '🤦🏿‍♂️', '🤵🏻‍♀️', '🤵🏻‍♂️', '🤵🏼‍♀️', '🤵🏼‍♂️', '🤵🏽‍♀️', '🤵🏽‍♂️', '🤵🏾‍♀️', '🤵🏾‍♂️', '🤵🏿‍♀️', '🤵🏿‍♂️', '🤷🏻‍♀️', '🤷🏻‍♂️', '🤷🏼‍♀️', '🤷🏼‍♂️', '🤷🏽‍♀️', '🤷🏽‍♂️', '🤷🏾‍♀️', '🤷🏾‍♂️', '🤷🏿‍♀️', '🤷🏿‍♂️', '🤸🏻‍♀️', '🤸🏻‍♂️', '🤸🏼‍♀️', '🤸🏼‍♂️', '🤸🏽‍♀️', '🤸🏽‍♂️', '🤸🏾‍♀️', '🤸🏾‍♂️', '🤸🏿‍♀️', '🤸🏿‍♂️', '🤹🏻‍♀️', '🤹🏻‍♂️', '🤹🏼‍♀️', '🤹🏼‍♂️', '🤹🏽‍♀️', '🤹🏽‍♂️', '🤹🏾‍♀️', '🤹🏾‍♂️', '🤹🏿‍♀️', '🤹🏿‍♂️', '🤽🏻‍♀️', '🤽🏻‍♂️', '🤽🏼‍♀️', '🤽🏼‍♂️', '🤽🏽‍♀️', '🤽🏽‍♂️', '🤽🏾‍♀️', '🤽🏾‍♂️', '🤽🏿‍♀️', '🤽🏿‍♂️', '🤾🏻‍♀️', '🤾🏻‍♂️', '🤾🏼‍♀️', '🤾🏼‍♂️', '🤾🏽‍♀️', '🤾🏽‍♂️', '🤾🏾‍♀️', '🤾🏾‍♂️', '🤾🏿‍♀️', '🤾🏿‍♂️', '🦸🏻‍♀️', '🦸🏻‍♂️', '🦸🏼‍♀️', '🦸🏼‍♂️', '🦸🏽‍♀️', '🦸🏽‍♂️', '🦸🏾‍♀️', '🦸🏾‍♂️', '🦸🏿‍♀️', '🦸🏿‍♂️', '🦹🏻‍♀️', '🦹🏻‍♂️', '🦹🏼‍♀️', '🦹🏼‍♂️', '🦹🏽‍♀️', '🦹🏽‍♂️', '🦹🏾‍♀️', '🦹🏾‍♂️', '🦹🏿‍♀️', '🦹🏿‍♂️', '🧍🏻‍♀️', '🧍🏻‍♂️', '🧍🏼‍♀️', '🧍🏼‍♂️', '🧍🏽‍♀️', '🧍🏽‍♂️', '🧍🏾‍♀️', '🧍🏾‍♂️', '🧍🏿‍♀️', '🧍🏿‍♂️', '🧎🏻‍♀️', '🧎🏻‍♂️', '🧎🏻‍➡️', '🧎🏼‍♀️', '🧎🏼‍♂️', '🧎🏼‍➡️', '🧎🏽‍♀️', '🧎🏽‍♂️', '🧎🏽‍➡️', '🧎🏾‍♀️', '🧎🏾‍♂️', '🧎🏾‍➡️', '🧎🏿‍♀️', '🧎🏿‍♂️', '🧎🏿‍➡️', '🧏🏻‍♀️', '🧏🏻‍♂️', '🧏🏼‍♀️', '🧏🏼‍♂️', '🧏🏽‍♀️', '🧏🏽‍♂️', '🧏🏾‍♀️', '🧏🏾‍♂️', '🧏🏿‍♀️', '🧏🏿‍♂️', '🧑🏻‍⚕️', '🧑🏻‍⚖️', '🧑🏻‍✈️', '🧑🏼‍⚕️', '🧑🏼‍⚖️', '🧑🏼‍✈️', '🧑🏽‍⚕️', '🧑🏽‍⚖️', '🧑🏽‍✈️', '🧑🏾‍⚕️', '🧑🏾‍⚖️', '🧑🏾‍✈️', '🧑🏿‍⚕️', '🧑🏿‍⚖️', '🧑🏿‍✈️', '🧔🏻‍♀️', '🧔🏻‍♂️', '🧔🏼‍♀️', '🧔🏼‍♂️', '🧔🏽‍♀️', '🧔🏽‍♂️', '🧔🏾‍♀️', '🧔🏾‍♂️', '🧔🏿‍♀️', '🧔🏿‍♂️', '🧖🏻‍♀️', '🧖🏻‍♂️', '🧖🏼‍♀️', '🧖🏼‍♂️', '🧖🏽‍♀️', '🧖🏽‍♂️', '🧖🏾‍♀️', '🧖🏾‍♂️', '🧖🏿‍♀️', '🧖🏿‍♂️', '🧗🏻‍♀️', '🧗🏻‍♂️', '🧗🏼‍♀️', '🧗🏼‍♂️', '🧗🏽‍♀️', '🧗🏽‍♂️', '🧗🏾‍♀️', '🧗🏾‍♂️', '🧗🏿‍♀️', '🧗🏿‍♂️', '🧘🏻‍♀️', '🧘🏻‍♂️', '🧘🏼‍♀️', '🧘🏼‍♂️', '🧘🏽‍♀️', '🧘🏽‍♂️', '🧘🏾‍♀️', '🧘🏾‍♂️', '🧘🏿‍♀️', '🧘🏿‍♂️', '🧙🏻‍♀️', '🧙🏻‍♂️', '🧙🏼‍♀️', '🧙🏼‍♂️', '🧙🏽‍♀️', '🧙🏽‍♂️', '🧙🏾‍♀️', '🧙🏾‍♂️', '🧙🏿‍♀️', '🧙🏿‍♂️', '🧚🏻‍♀️', '🧚🏻‍♂️', '🧚🏼‍♀️', '🧚🏼‍♂️', '🧚🏽‍♀️', '🧚🏽‍♂️', '🧚🏾‍♀️', '🧚🏾‍♂️', '🧚🏿‍♀️', '🧚🏿‍♂️', '🧛🏻‍♀️', '🧛🏻‍♂️', '🧛🏼‍♀️', '🧛🏼‍♂️', '🧛🏽‍♀️', '🧛🏽‍♂️', '🧛🏾‍♀️', '🧛🏾‍♂️', '🧛🏿‍♀️', '🧛🏿‍♂️', '🧜🏻‍♀️', '🧜🏻‍♂️', '🧜🏼‍♀️', '🧜🏼‍♂️', '🧜🏽‍♀️', '🧜🏽‍♂️', '🧜🏾‍♀️', '🧜🏾‍♂️', '🧜🏿‍♀️', '🧜🏿‍♂️', '🧝🏻‍♀️', '🧝🏻‍♂️', '🧝🏼‍♀️', '🧝🏼‍♂️', '🧝🏽‍♀️', '🧝🏽‍♂️', '🧝🏾‍♀️', '🧝🏾‍♂️', '🧝🏿‍♀️', '🧝🏿‍♂️', '🏋️‍♀️', '🏋️‍♂️', '🏌️‍♀️', '🏌️‍♂️', '🏳️‍⚧️', '🕴️‍♀️', '🕴️‍♂️', '🕵️‍♀️', '🕵️‍♂️', '⛹🏻‍♀️', '⛹🏻‍♂️', '⛹🏼‍♀️', '⛹🏼‍♂️', '⛹🏽‍♀️', '⛹🏽‍♂️', '⛹🏾‍♀️', '⛹🏾‍♂️', '⛹🏿‍♀️', '⛹🏿‍♂️', '⛹️‍♀️', '⛹️‍♂️', '👨🏻‍🌾', '👨🏻‍🍳', '👨🏻‍🍼', '👨🏻‍🎄', '👨🏻‍🎓', '👨🏻‍🎤', '👨🏻‍🎨', '👨🏻‍🏫', '👨🏻‍🏭', '👨🏻‍💻', '👨🏻‍💼', '👨🏻‍🔧', '👨🏻‍🔬', '👨🏻‍🚀', '👨🏻‍🚒', '👨🏻‍🦯', '👨🏻‍🦰', '👨🏻‍🦱', '👨🏻‍🦲', '👨🏻‍🦳', '👨🏻‍🦼', '👨🏻‍🦽', '👨🏼‍🌾', '👨🏼‍🍳', '👨🏼‍🍼', '👨🏼‍🎄', '👨🏼‍🎓', '👨🏼‍🎤', '👨🏼‍🎨', '👨🏼‍🏫', '👨🏼‍🏭', '👨🏼‍💻', '👨🏼‍💼', '👨🏼‍🔧', '👨🏼‍🔬', '👨🏼‍🚀', '👨🏼‍🚒', '👨🏼‍🦯', '👨🏼‍🦰', '👨🏼‍🦱', '👨🏼‍🦲', '👨🏼‍🦳', '👨🏼‍🦼', '👨🏼‍🦽', '👨🏽‍🌾', '👨🏽‍🍳', '👨🏽‍🍼', '👨🏽‍🎄', '👨🏽‍🎓', '👨🏽‍🎤', '👨🏽‍🎨', '👨🏽‍🏫', '👨🏽‍🏭', '👨🏽‍💻', '👨🏽‍💼', '👨🏽‍🔧', '👨🏽‍🔬', '👨🏽‍🚀', '👨🏽‍🚒', '👨🏽‍🦯', '👨🏽‍🦰', '👨🏽‍🦱', '👨🏽‍🦲', '👨🏽‍🦳', '👨🏽‍🦼', '👨🏽‍🦽', '👨🏾‍🌾', '👨🏾‍🍳', '👨🏾‍🍼', '👨🏾‍🎄', '👨🏾‍🎓', '👨🏾‍🎤', '👨🏾‍🎨', '👨🏾‍🏫', '👨🏾‍🏭', '👨🏾‍💻', '👨🏾‍💼', '👨🏾‍🔧', '👨🏾‍🔬', '👨🏾‍🚀', '👨🏾‍🚒', '👨🏾‍🦯', '👨🏾‍🦰', '👨🏾‍🦱', '👨🏾‍🦲', '👨🏾‍🦳', '👨🏾‍🦼', '👨🏾‍🦽', '👨🏿‍🌾', '👨🏿‍🍳', '👨🏿‍🍼', '👨🏿‍🎄', '👨🏿‍🎓', '👨🏿‍🎤', '👨🏿‍🎨', '👨🏿‍🏫', '👨🏿‍🏭', '👨🏿‍💻', '👨🏿‍💼', '👨🏿‍🔧', '👨🏿‍🔬', '👨🏿‍🚀', '👨🏿‍🚒', '👨🏿‍🦯', '👨🏿‍🦰', '👨🏿‍🦱', '👨🏿‍🦲', '👨🏿‍🦳', '👨🏿‍🦼', '👨🏿‍🦽', '👩🏻‍🌾', '👩🏻‍🍳', '👩🏻‍🍼', '👩🏻‍🎄', '👩🏻‍🎓', '👩🏻‍🎤', '👩🏻‍🎨', '👩🏻‍🏫', '👩🏻‍🏭', '👩🏻‍💻', '👩🏻‍💼', '👩🏻‍🔧', '👩🏻‍🔬', '👩🏻‍🚀', '👩🏻‍🚒', '👩🏻‍🦯', '👩🏻‍🦰', '👩🏻‍🦱', '👩🏻‍🦲', '👩🏻‍🦳', '👩🏻‍🦼', '👩🏻‍🦽', '👩🏼‍🌾', '👩🏼‍🍳', '👩🏼‍🍼', '👩🏼‍🎄', '👩🏼‍🎓', '👩🏼‍🎤', '👩🏼‍🎨', '👩🏼‍🏫', '👩🏼‍🏭', '👩🏼‍💻', '👩🏼‍💼', '👩🏼‍🔧', '👩🏼‍🔬', '👩🏼‍🚀', '👩🏼‍🚒', '👩🏼‍🦯', '👩🏼‍🦰', '👩🏼‍🦱', '👩🏼‍🦲', '👩🏼‍🦳', '👩🏼‍🦼', '👩🏼‍🦽', '👩🏽‍🌾', '👩🏽‍🍳', '👩🏽‍🍼', '👩🏽‍🎄', '👩🏽‍🎓', '👩🏽‍🎤', '👩🏽‍🎨', '👩🏽‍🏫', '👩🏽‍🏭', '👩🏽‍💻', '👩🏽‍💼', '👩🏽‍🔧', '👩🏽‍🔬', '👩🏽‍🚀', '👩🏽‍🚒', '👩🏽‍🦯', '👩🏽‍🦰', '👩🏽‍🦱', '👩🏽‍🦲', '👩🏽‍🦳', '👩🏽‍🦼', '👩🏽‍🦽', '👩🏾‍🌾', '👩🏾‍🍳', '👩🏾‍🍼', '👩🏾‍🎄', '👩🏾‍🎓', '👩🏾‍🎤', '👩🏾‍🎨', '👩🏾‍🏫', '👩🏾‍🏭', '👩🏾‍💻', '👩🏾‍💼', '👩🏾‍🔧', '👩🏾‍🔬', '👩🏾‍🚀', '👩🏾‍🚒', '👩🏾‍🦯', '👩🏾‍🦰', '👩🏾‍🦱', '👩🏾‍🦲', '👩🏾‍🦳', '👩🏾‍🦼', '👩🏾‍🦽', '👩🏿‍🌾', '👩🏿‍🍳', '👩🏿‍🍼', '👩🏿‍🎄', '👩🏿‍🎓', '👩🏿‍🎤', '👩🏿‍🎨', '👩🏿‍🏫', '👩🏿‍🏭', '👩🏿‍💻', '👩🏿‍💼', '👩🏿‍🔧', '👩🏿‍🔬', '👩🏿‍🚀', '👩🏿‍🚒', '👩🏿‍🦯', '👩🏿‍🦰', '👩🏿‍🦱', '👩🏿‍🦲', '👩🏿‍🦳', '👩🏿‍🦼', '👩🏿‍🦽', '🧑🏻‍🌾', '🧑🏻‍🍳', '🧑🏻‍🍼', '🧑🏻‍🎄', '🧑🏻‍🎓', '🧑🏻‍🎤', '🧑🏻‍🎨', '🧑🏻‍🏫', '🧑🏻‍🏭', '🧑🏻‍💻', '🧑🏻‍💼', '🧑🏻‍🔧', '🧑🏻‍🔬', '🧑🏻‍🚀', '🧑🏻‍🚒', '🧑🏻‍🦯', '🧑🏻‍🦰', '🧑🏻‍🦱', '🧑🏻‍🦲', '🧑🏻‍🦳', '🧑🏻‍🦼', '🧑🏻‍🦽', '🧑🏼‍🌾', '🧑🏼‍🍳', '🧑🏼‍🍼', '🧑🏼‍🎄', '🧑🏼‍🎓', '🧑🏼‍🎤', '🧑🏼‍🎨', '🧑🏼‍🏫', '🧑🏼‍🏭', '🧑🏼‍💻', '🧑🏼‍💼', '🧑🏼‍🔧', '🧑🏼‍🔬', '🧑🏼‍🚀', '🧑🏼‍🚒', '🧑🏼‍🦯', '🧑🏼‍🦰', '🧑🏼‍🦱', '🧑🏼‍🦲', '🧑🏼‍🦳', '🧑🏼‍🦼', '🧑🏼‍🦽', '🧑🏽‍🌾', '🧑🏽‍🍳', '🧑🏽‍🍼', '🧑🏽‍🎄', '🧑🏽‍🎓', '🧑🏽‍🎤', '🧑🏽‍🎨', '🧑🏽‍🏫', '🧑🏽‍🏭', '🧑🏽‍💻', '🧑🏽‍💼', '🧑🏽‍🔧', '🧑🏽‍🔬', '🧑🏽‍🚀', '🧑🏽‍🚒', '🧑🏽‍🦯', '🧑🏽‍🦰', '🧑🏽‍🦱', '🧑🏽‍🦲', '🧑🏽‍🦳', '🧑🏽‍🦼', '🧑🏽‍🦽', '🧑🏾‍🌾', '🧑🏾‍🍳', '🧑🏾‍🍼', '🧑🏾‍🎄', '🧑🏾‍🎓', '🧑🏾‍🎤', '🧑🏾‍🎨', '🧑🏾‍🏫', '🧑🏾‍🏭', '🧑🏾‍💻', '🧑🏾‍💼', '🧑🏾‍🔧', '🧑🏾‍🔬', '🧑🏾‍🚀', '🧑🏾‍🚒', '🧑🏾‍🦯', '🧑🏾‍🦰', '🧑🏾‍🦱', '🧑🏾‍🦲', '🧑🏾‍🦳', '🧑🏾‍🦼', '🧑🏾‍🦽', '🧑🏿‍🌾', '🧑🏿‍🍳', '🧑🏿‍🍼', '🧑🏿‍🎄', '🧑🏿‍🎓', '🧑🏿‍🎤', '🧑🏿‍🎨', '🧑🏿‍🏫', '🧑🏿‍🏭', '🧑🏿‍💻', '🧑🏿‍💼', '🧑🏿‍🔧', '🧑🏿‍🔬', '🧑🏿‍🚀', '🧑🏿‍🚒', '🧑🏿‍🦯', '🧑🏿‍🦰', '🧑🏿‍🦱', '🧑🏿‍🦲', '🧑🏿‍🦳', '🧑🏿‍🦼', '🧑🏿‍🦽', '🏳️‍🌈', '😶‍🌫️', '🏃‍♀️', '🏃‍♂️', '🏃‍➡️', '🏄‍♀️', '🏄‍♂️', '🏊‍♀️', '🏊‍♂️', '🏴‍☠️', '🐻‍❄️', '👨‍⚕️', '👨‍⚖️', '👨‍✈️', '👩‍⚕️', '👩‍⚖️', '👩‍✈️', '👮‍♀️', '👮‍♂️', '👯‍♀️', '👯‍♂️', '👰‍♀️', '👰‍♂️', '👱‍♀️', '👱‍♂️', '👳‍♀️', '👳‍♂️', '👷‍♀️', '👷‍♂️', '💁‍♀️', '💁‍♂️', '💂‍♀️', '💂‍♂️', '💆‍♀️', '💆‍♂️', '💇‍♀️', '💇‍♂️', '🙂‍↔️', '🙂‍↕️', '🙅‍♀️', '🙅‍♂️', '🙆‍♀️', '🙆‍♂️', '🙇‍♀️', '🙇‍♂️', '🙋‍♀️', '🙋‍♂️', '🙍‍♀️', '🙍‍♂️', '🙎‍♀️', '🙎‍♂️', '🚣‍♀️', '🚣‍♂️', '🚴‍♀️', '🚴‍♂️', '🚵‍♀️', '🚵‍♂️', '🚶‍♀️', '🚶‍♂️', '🚶‍➡️', '🤦‍♀️', '🤦‍♂️', '🤵‍♀️', '🤵‍♂️', '🤷‍♀️', '🤷‍♂️', '🤸‍♀️', '🤸‍♂️', '🤹‍♀️', '🤹‍♂️', '🤼‍♀️', '🤼‍♂️', '🤽‍♀️', '🤽‍♂️', '🤾‍♀️', '🤾‍♂️', '🦸‍♀️', '🦸‍♂️', '🦹‍♀️', '🦹‍♂️', '🧍‍♀️', '🧍‍♂️', '🧎‍♀️', '🧎‍♂️', '🧎‍➡️', '🧏‍♀️', '🧏‍♂️', '🧑‍⚕️', '🧑‍⚖️', '🧑‍✈️', '🧔‍♀️', '🧔‍♂️', '🧖‍♀️', '🧖‍♂️', '🧗‍♀️', '🧗‍♂️', '🧘‍♀️', '🧘‍♂️', '🧙‍♀️', '🧙‍♂️', '🧚‍♀️', '🧚‍♂️', '🧛‍♀️', '🧛‍♂️', '🧜‍♀️', '🧜‍♂️', '🧝‍♀️', '🧝‍♂️', '🧞‍♀️', '🧞‍♂️', '🧟‍♀️', '🧟‍♂️', '⛓️‍💥', '❤️‍🔥', '❤️‍🩹', '🍄‍🟫', '🍋‍🟩', '🐕‍🦺', '🐦‍🔥', '👁‍🗨', '👨‍🌾', '👨‍🍳', '👨‍🍼', '👨‍🎄', '👨‍🎓', '👨‍🎤', '👨‍🎨', '👨‍🏫', '👨‍🏭', '👨‍👦', '👨‍👧', '👨‍💻', '👨‍💼', '👨‍🔧', '👨‍🔬', '👨‍🚀', '👨‍🚒', '👨‍🦯', '👨‍🦰', '👨‍🦱', '👨‍🦲', '👨‍🦳', '👨‍🦼', '👨‍🦽', '👩‍🌾', '👩‍🍳', '👩‍🍼', '👩‍🎄', '👩‍🎓', '👩‍🎤', '👩‍🎨', '👩‍🏫', '👩‍🏭', '👩‍👦', '👩‍👧', '👩‍💻', '👩‍💼', '👩‍🔧', '👩‍🔬', '👩‍🚀', '👩‍🚒', '👩‍🦯', '👩‍🦰', '👩‍🦱', '👩‍🦲', '👩‍🦳', '👩‍🦼', '👩‍🦽', '😮‍💨', '😵‍💫', '🧑‍🌾', '🧑‍🍳', '🧑‍🍼', '🧑‍🎄', '🧑‍🎓', '🧑‍🎤', '🧑‍🎨', '🧑‍🏫', '🧑‍🏭', '🧑‍💻', '🧑‍💼', '🧑‍🔧', '🧑‍🔬', '🧑‍🚀', '🧑‍🚒', '🧑‍🦯', '🧑‍🦰', '🧑‍🦱', '🧑‍🦲', '🧑‍🦳', '🧑‍🦼', '🧑‍🦽', '🧑‍🧒', '🐈‍⬛', '🐦‍⬛', '🇦🇨', '🇦🇩', '🇦🇪', '🇦🇫', '🇦🇬', '🇦🇮', '🇦🇱', '🇦🇲', '🇦🇴', '🇦🇶', '🇦🇷', '🇦🇸', '🇦🇹', '🇦🇺', '🇦🇼', '🇦🇽', '🇦🇿', '🇧🇦', '🇧🇧', '🇧🇩', '🇧🇪', '🇧🇫', '🇧🇬', '🇧🇭', '🇧🇮', '🇧🇯', '🇧🇱', '🇧🇲', '🇧🇳', '🇧🇴', '🇧🇶', '🇧🇷', '🇧🇸', '🇧🇹', '🇧🇻', '🇧🇼', '🇧🇾', '🇧🇿', '🇨🇦', '🇨🇨', '🇨🇩', '🇨🇫', '🇨🇬', '🇨🇭', '🇨🇮', '🇨🇰', '🇨🇱', '🇨🇲', '🇨🇳', '🇨🇴', '🇨🇵', '🇨🇶', '🇨🇷', '🇨🇺', '🇨🇻', '🇨🇼', '🇨🇽', '🇨🇾', '🇨🇿', '🇩🇪', '🇩🇬', '🇩🇯', '🇩🇰', '🇩🇲', '🇩🇴', '🇩🇿', '🇪🇦', '🇪🇨', '🇪🇪', '🇪🇬', '🇪🇭', '🇪🇷', '🇪🇸', '🇪🇹', '🇪🇺', '🇫🇮', '🇫🇯', '🇫🇰', '🇫🇲', '🇫🇴', '🇫🇷', '🇬🇦', '🇬🇧', '🇬🇩', '🇬🇪', '🇬🇫', '🇬🇬', '🇬🇭', '🇬🇮', '🇬🇱', '🇬🇲', '🇬🇳', '🇬🇵', '🇬🇶', '🇬🇷', '🇬🇸', '🇬🇹', '🇬🇺', '🇬🇼', '🇬🇾', '🇭🇰', '🇭🇲', '🇭🇳', '🇭🇷', '🇭🇹', '🇭🇺', '🇮🇨', '🇮🇩', '🇮🇪', '🇮🇱', '🇮🇲', '🇮🇳', '🇮🇴', '🇮🇶', '🇮🇷', '🇮🇸', '🇮🇹', '🇯🇪', '🇯🇲', '🇯🇴', '🇯🇵', '🇰🇪', '🇰🇬', '🇰🇭', '🇰🇮', '🇰🇲', '🇰🇳', '🇰🇵', '🇰🇷', '🇰🇼', '🇰🇾', '🇰🇿', '🇱🇦', '🇱🇧', '🇱🇨', '🇱🇮', '🇱🇰', '🇱🇷', '🇱🇸', '🇱🇹', '🇱🇺', '🇱🇻', '🇱🇾', '🇲🇦', '🇲🇨', '🇲🇩', '🇲🇪', '🇲🇫', '🇲🇬', '🇲🇭', '🇲🇰', '🇲🇱', '🇲🇲', '🇲🇳', '🇲🇴', '🇲🇵', '🇲🇶', '🇲🇷', '🇲🇸', '🇲🇹', '🇲🇺', '🇲🇻', '🇲🇼', '🇲🇽', '🇲🇾', '🇲🇿', '🇳🇦', '🇳🇨', '🇳🇪', '🇳🇫', '🇳🇬', '🇳🇮', '🇳🇱', '🇳🇴', '🇳🇵', '🇳🇷', '🇳🇺', '🇳🇿', '🇴🇲', '🇵🇦', '🇵🇪', '🇵🇫', '🇵🇬', '🇵🇭', '🇵🇰', '🇵🇱', '🇵🇲', '🇵🇳', '🇵🇷', '🇵🇸', '🇵🇹', '🇵🇼', '🇵🇾', '🇶🇦', '🇷🇪', '🇷🇴', '🇷🇸', '🇷🇺', '🇷🇼', '🇸🇦', '🇸🇧', '🇸🇨', '🇸🇩', '🇸🇪', '🇸🇬', '🇸🇭', '🇸🇮', '🇸🇯', '🇸🇰', '🇸🇱', '🇸🇲', '🇸🇳', '🇸🇴', '🇸🇷', '🇸🇸', '🇸🇹', '🇸🇻', '🇸🇽', '🇸🇾', '🇸🇿', '🇹🇦', '🇹🇨', '🇹🇩', '🇹🇫', '🇹🇬', '🇹🇭', '🇹🇯', '🇹🇰', '🇹🇱', '🇹🇲', '🇹🇳', '🇹🇴', '🇹🇷', '🇹🇹', '🇹🇻', '🇹🇼', '🇹🇿', '🇺🇦', '🇺🇬', '🇺🇲', '🇺🇳', '🇺🇸', '🇺🇾', '🇺🇿', '🇻🇦', '🇻🇨', '🇻🇪', '🇻🇬', '🇻🇮', '🇻🇳', '🇻🇺', '🇼🇫', '🇼🇸', '🇽🇰', '🇾🇪', '🇾🇹', '🇿🇦', '🇿🇲', '🇿🇼', '🎅🏻', '🎅🏼', '🎅🏽', '🎅🏾', '🎅🏿', '🏂🏻', '🏂🏼', '🏂🏽', '🏂🏾', '🏂🏿', '🏃🏻', '🏃🏼', '🏃🏽', '🏃🏾', '🏃🏿', '🏄🏻', '🏄🏼', '🏄🏽', '🏄🏾', '🏄🏿', '🏇🏻', '🏇🏼', '🏇🏽', '🏇🏾', '🏇🏿', '🏊🏻', '🏊🏼', '🏊🏽', '🏊🏾', '🏊🏿', '🏋🏻', '🏋🏼', '🏋🏽', '🏋🏾', '🏋🏿', '🏌🏻', '🏌🏼', '🏌🏽', '🏌🏾', '🏌🏿', '👂🏻', '👂🏼', '👂🏽', '👂🏾', '👂🏿', '👃🏻', '👃🏼', '👃🏽', '👃🏾', '👃🏿', '👆🏻', '👆🏼', '👆🏽', '👆🏾', '👆🏿', '👇🏻', '👇🏼', '👇🏽', '👇🏾', '👇🏿', '👈🏻', '👈🏼', '👈🏽', '👈🏾', '👈🏿', '👉🏻', '👉🏼', '👉🏽', '👉🏾', '👉🏿', '👊🏻', '👊🏼', '👊🏽', '👊🏾', '👊🏿', '👋🏻', '👋🏼', '👋🏽', '👋🏾', '👋🏿', '👌🏻', '👌🏼', '👌🏽', '👌🏾', '👌🏿', '👍🏻', '👍🏼', '👍🏽', '👍🏾', '👍🏿', '👎🏻', '👎🏼', '👎🏽', '👎🏾', '👎🏿', '👏🏻', '👏🏼', '👏🏽', '👏🏾', '👏🏿', '👐🏻', '👐🏼', '👐🏽', '👐🏾', '👐🏿', '👦🏻', '👦🏼', '👦🏽', '👦🏾', '👦🏿', '👧🏻', '👧🏼', '👧🏽', '👧🏾', '👧🏿', '👨🏻', '👨🏼', '👨🏽', '👨🏾', '👨🏿', '👩🏻', '👩🏼', '👩🏽', '👩🏾', '👩🏿', '👫🏻', '👫🏼', '👫🏽', '👫🏾', '👫🏿', '👬🏻', '👬🏼', '👬🏽', '👬🏾', '👬🏿', '👭🏻', '👭🏼', '👭🏽', '👭🏾', '👭🏿', '👮🏻', '👮🏼', '👮🏽', '👮🏾', '👮🏿', '👰🏻', '👰🏼', '👰🏽', '👰🏾', '👰🏿', '👱🏻', '👱🏼', '👱🏽', '👱🏾', '👱🏿', '👲🏻', '👲🏼', '👲🏽', '👲🏾', '👲🏿', '👳🏻', '👳🏼', '👳🏽', '👳🏾', '👳🏿', '👴🏻', '👴🏼', '👴🏽', '👴🏾', '👴🏿', '👵🏻', '👵🏼', '👵🏽', '👵🏾', '👵🏿', '👶🏻', '👶🏼', '👶🏽', '👶🏾', '👶🏿', '👷🏻', '👷🏼', '👷🏽', '👷🏾', '👷🏿', '👸🏻', '👸🏼', '👸🏽', '👸🏾', '👸🏿', '👼🏻', '👼🏼', '👼🏽', '👼🏾', '👼🏿', '💁🏻', '💁🏼', '💁🏽', '💁🏾', '💁🏿', '💂🏻', '💂🏼', '💂🏽', '💂🏾', '💂🏿', '💃🏻', '💃🏼', '💃🏽', '💃🏾', '💃🏿', '💅🏻', '💅🏼', '💅🏽', '💅🏾', '💅🏿', '💆🏻', '💆🏼', '💆🏽', '💆🏾', '💆🏿', '💇🏻', '💇🏼', '💇🏽', '💇🏾', '💇🏿', '💏🏻', '💏🏼', '💏🏽', '💏🏾', '💏🏿', '💑🏻', '💑🏼', '💑🏽', '💑🏾', '💑🏿', '💪🏻', '💪🏼', '💪🏽', '💪🏾', '💪🏿', '🕴🏻', '🕴🏼', '🕴🏽', '🕴🏾', '🕴🏿', '🕵🏻', '🕵🏼', '🕵🏽', '🕵🏾', '🕵🏿', '🕺🏻', '🕺🏼', '🕺🏽', '🕺🏾', '🕺🏿', '🖐🏻', '🖐🏼', '🖐🏽', '🖐🏾', '🖐🏿', '🖕🏻', '🖕🏼', '🖕🏽', '🖕🏾', '🖕🏿', '🖖🏻', '🖖🏼', '🖖🏽', '🖖🏾', '🖖🏿', '🙅🏻', '🙅🏼', '🙅🏽', '🙅🏾', '🙅🏿', '🙆🏻', '🙆🏼', '🙆🏽', '🙆🏾', '🙆🏿', '🙇🏻', '🙇🏼', '🙇🏽', '🙇🏾', '🙇🏿', '🙋🏻', '🙋🏼', '🙋🏽', '🙋🏾', '🙋🏿', '🙌🏻', '🙌🏼', '🙌🏽', '🙌🏾', '🙌🏿', '🙍🏻', '🙍🏼', '🙍🏽', '🙍🏾', '🙍🏿', '🙎🏻', '🙎🏼', '🙎🏽', '🙎🏾', '🙎🏿', '🙏🏻', '🙏🏼', '🙏🏽', '🙏🏾', '🙏🏿', '🚣🏻', '🚣🏼', '🚣🏽', '🚣🏾', '🚣🏿', '🚴🏻', '🚴🏼', '🚴🏽', '🚴🏾', '🚴🏿', '🚵🏻', '🚵🏼', '🚵🏽', '🚵🏾', '🚵🏿', '🚶🏻', '🚶🏼', '🚶🏽', '🚶🏾', '🚶🏿', '🛀🏻', '🛀🏼', '🛀🏽', '🛀🏾', '🛀🏿', '🛌🏻', '🛌🏼', '🛌🏽', '🛌🏾', '🛌🏿', '🤌🏻', '🤌🏼', '🤌🏽', '🤌🏾', '🤌🏿', '🤏🏻', '🤏🏼', '🤏🏽', '🤏🏾', '🤏🏿', '🤘🏻', '🤘🏼', '🤘🏽', '🤘🏾', '🤘🏿', '🤙🏻', '🤙🏼', '🤙🏽', '🤙🏾', '🤙🏿', '🤚🏻', '🤚🏼', '🤚🏽', '🤚🏾', '🤚🏿', '🤛🏻', '🤛🏼', '🤛🏽', '🤛🏾', '🤛🏿', '🤜🏻', '🤜🏼', '🤜🏽', '🤜🏾', '🤜🏿', '🤝🏻', '🤝🏼', '🤝🏽', '🤝🏾', '🤝🏿', '🤞🏻', '🤞🏼', '🤞🏽', '🤞🏾', '🤞🏿', '🤟🏻', '🤟🏼', '🤟🏽', '🤟🏾', '🤟🏿', '🤦🏻', '🤦🏼', '🤦🏽', '🤦🏾', '🤦🏿', '🤰🏻', '🤰🏼', '🤰🏽', '🤰🏾', '🤰🏿', '🤱🏻', '🤱🏼', '🤱🏽', '🤱🏾', '🤱🏿', '🤲🏻', '🤲🏼', '🤲🏽', '🤲🏾', '🤲🏿', '🤳🏻', '🤳🏼', '🤳🏽', '🤳🏾', '🤳🏿', '🤴🏻', '🤴🏼', '🤴🏽', '🤴🏾', '🤴🏿', '🤵🏻', '🤵🏼', '🤵🏽', '🤵🏾', '🤵🏿', '🤶🏻', '🤶🏼', '🤶🏽', '🤶🏾', '🤶🏿', '🤷🏻', '🤷🏼', '🤷🏽', '🤷🏾', '🤷🏿', '🤸🏻', '🤸🏼', '🤸🏽', '🤸🏾', '🤸🏿', '🤹🏻', '🤹🏼', '🤹🏽', '🤹🏾', '🤹🏿', '🤽🏻', '🤽🏼', '🤽🏽', '🤽🏾', '🤽🏿', '🤾🏻', '🤾🏼', '🤾🏽', '🤾🏾', '🤾🏿', '🥷🏻', '🥷🏼', '🥷🏽', '🥷🏾', '🥷🏿', '🦵🏻', '🦵🏼', '🦵🏽', '🦵🏾', '🦵🏿', '🦶🏻', '🦶🏼', '🦶🏽', '🦶🏾', '🦶🏿', '🦸🏻', '🦸🏼', '🦸🏽', '🦸🏾', '🦸🏿', '🦹🏻', '🦹🏼', '🦹🏽', '🦹🏾', '🦹🏿', '🦻🏻', '🦻🏼', '🦻🏽', '🦻🏾', '🦻🏿', '🧍🏻', '🧍🏼', '🧍🏽', '🧍🏾', '🧍🏿', '🧎🏻', '🧎🏼', '🧎🏽', '🧎🏾', '🧎🏿', '🧏🏻', '🧏🏼', '🧏🏽', '🧏🏾', '🧏🏿', '🧑🏻', '🧑🏼', '🧑🏽', '🧑🏾', '🧑🏿', '🧒🏻', '🧒🏼', '🧒🏽', '🧒🏾', '🧒🏿', '🧓🏻', '🧓🏼', '🧓🏽', '🧓🏾', '🧓🏿', '🧔🏻', '🧔🏼', '🧔🏽', '🧔🏾', '🧔🏿', '🧕🏻', '🧕🏼', '🧕🏽', '🧕🏾', '🧕🏿', '🧖🏻', '🧖🏼', '🧖🏽', '🧖🏾', '🧖🏿', '🧗🏻', '🧗🏼', '🧗🏽', '🧗🏾', '🧗🏿', '🧘🏻', '🧘🏼', '🧘🏽', '🧘🏾', '🧘🏿', '🧙🏻', '🧙🏼', '🧙🏽', '🧙🏾', '🧙🏿', '🧚🏻', '🧚🏼', '🧚🏽', '🧚🏾', '🧚🏿', '🧛🏻', '🧛🏼', '🧛🏽', '🧛🏾', '🧛🏿', '🧜🏻', '🧜🏼', '🧜🏽', '🧜🏾', '🧜🏿', '🧝🏻', '🧝🏼', '🧝🏽', '🧝🏾', '🧝🏿', '🫃🏻', '🫃🏼', '🫃🏽', '🫃🏾', '🫃🏿', '🫄🏻', '🫄🏼', '🫄🏽', '🫄🏾', '🫄🏿', '🫅🏻', '🫅🏼', '🫅🏽', '🫅🏾', '🫅🏿', '🫰🏻', '🫰🏼', '🫰🏽', '🫰🏾', '🫰🏿', '🫱🏻', '🫱🏼', '🫱🏽', '🫱🏾', '🫱🏿', '🫲🏻', '🫲🏼', '🫲🏽', '🫲🏾', '🫲🏿', '🫳🏻', '🫳🏼', '🫳🏽', '🫳🏾', '🫳🏿', '🫴🏻', '🫴🏼', '🫴🏽', '🫴🏾', '🫴🏿', '🫵🏻', '🫵🏼', '🫵🏽', '🫵🏾', '🫵🏿', '🫶🏻', '🫶🏼', '🫶🏽', '🫶🏾', '🫶🏿', '🫷🏻', '🫷🏼', '🫷🏽', '🫷🏾', '🫷🏿', '🫸🏻', '🫸🏼', '🫸🏽', '🫸🏾', '🫸🏿', '☝🏻', '☝🏼', '☝🏽', '☝🏾', '☝🏿', '⛷🏻', '⛷🏼', '⛷🏽', '⛷🏾', '⛷🏿', '⛹🏻', '⛹🏼', '⛹🏽', '⛹🏾', '⛹🏿', '✊🏻', '✊🏼', '✊🏽', '✊🏾', '✊🏿', '✋🏻', '✋🏼', '✋🏽', '✋🏾', '✋🏿', '✌🏻', '✌🏼', '✌🏽', '✌🏾', '✌🏿', '✍🏻', '✍🏼', '✍🏽', '✍🏾', '✍🏿', '#⃣', '*⃣', '0⃣', '1⃣', '2⃣', '3⃣', '4⃣', '5⃣', '6⃣', '7⃣', '8⃣', '9⃣', '🀄', '🃏', '🅰', '🅱', '🅾', '🅿', '🆎', '🆑', '🆒', '🆓', '🆔', '🆕', '🆖', '🆗', '🆘', '🆙', '🆚', '🇦', '🇧', '🇨', '🇩', '🇪', '🇫', '🇬', '🇭', '🇮', '🇯', '🇰', '🇱', '🇲', '🇳', '🇴', '🇵', '🇶', '🇷', '🇸', '🇹', '🇺', '🇻', '🇼', '🇽', '🇾', '🇿', '🈁', '🈂', '🈚', '🈯', '🈲', '🈳', '🈴', '🈵', '🈶', '🈷', '🈸', '🈹', '🈺', '🉐', '🉑', '🌀', '🌁', '🌂', '🌃', '🌄', '🌅', '🌆', '🌇', '🌈', '🌉', '🌊', '🌋', '🌌', '🌍', '🌎', '🌏', '🌐', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌙', '🌚', '🌛', '🌜', '🌝', '🌞', '🌟', '🌠', '🌡', '🌤', '🌥', '🌦', '🌧', '🌨', '🌩', '🌪', '🌫', '🌬', '🌭', '🌮', '🌯', '🌰', '🌱', '🌲', '🌳', '🌴', '🌵', '🌶', '🌷', '🌸', '🌹', '🌺', '🌻', '🌼', '🌽', '🌾', '🌿', '🍀', '🍁', '🍂', '🍃', '🍄', '🍅', '🍆', '🍇', '🍈', '🍉', '🍊', '🍋', '🍌', '🍍', '🍎', '🍏', '🍐', '🍑', '🍒', '🍓', '🍔', '🍕', '🍖', '🍗', '🍘', '🍙', '🍚', '🍛', '🍜', '🍝', '🍞', '🍟', '🍠', '🍡', '🍢', '🍣', '🍤', '🍥', '🍦', '🍧', '🍨', '🍩', '🍪', '🍫', '🍬', '🍭', '🍮', '🍯', '🍰', '🍱', '🍲', '🍳', '🍴', '🍵', '🍶', '🍷', '🍸', '🍹', '🍺', '🍻', '🍼', '🍽', '🍾', '🍿', '🎀', '🎁', '🎂', '🎃', '🎄', '🎅', '🎆', '🎇', '🎈', '🎉', '🎊', '🎋', '🎌', '🎍', '🎎', '🎏', '🎐', '🎑', '🎒', '🎓', '🎖', '🎗', '🎙', '🎚', '🎛', '🎞', '🎟', '🎠', '🎡', '🎢', '🎣', '🎤', '🎥', '🎦', '🎧', '🎨', '🎩', '🎪', '🎫', '🎬', '🎭', '🎮', '🎯', '🎰', '🎱', '🎲', '🎳', '🎴', '🎵', '🎶', '🎷', '🎸', '🎹', '🎺', '🎻', '🎼', '🎽', '🎾', '🎿', '🏀', '🏁', '🏂', '🏃', '🏄', '🏅', '🏆', '🏇', '🏈', '🏉', '🏊', '🏋', '🏌', '🏍', '🏎', '🏏', '🏐', '🏑', '🏒', '🏓', '🏔', '🏕', '🏖', '🏗', '🏘', '🏙', '🏚', '🏛', '🏜', '🏝', '🏞', '🏟', '🏠', '🏡', '🏢', '🏣', '🏤', '🏥', '🏦', '🏧', '🏨', '🏩', '🏪', '🏫', '🏬', '🏭', '🏮', '🏯', '🏰', '🏳', '🏴', '🏵', '🏷', '🏸', '🏹', '🏺', '🏻', '🏼', '🏽', '🏾', '🏿', '🐀', '🐁', '🐂', '🐃', '🐄', '🐅', '🐆', '🐇', '🐈', '🐉', '🐊', '🐋', '🐌', '🐍', '🐎', '🐏', '🐐', '🐑', '🐒', '🐓', '🐔', '🐕', '🐖', '🐗', '🐘', '🐙', '🐚', '🐛', '🐜', '🐝', '🐞', '🐟', '🐠', '🐡', '🐢', '🐣', '🐤', '🐥', '🐦', '🐧', '🐨', '🐩', '🐪', '🐫', '🐬', '🐭', '🐮', '🐯', '🐰', '🐱', '🐲', '🐳', '🐴', '🐵', '🐶', '🐷', '🐸', '🐹', '🐺', '🐻', '🐼', '🐽', '🐾', '🐿', '👀', '👁', '👂', '👃', '👄', '👅', '👆', '👇', '👈', '👉', '👊', '👋', '👌', '👍', '👎', '👏', '👐', '👑', '👒', '👓', '👔', '👕', '👖', '👗', '👘', '👙', '👚', '👛', '👜', '👝', '👞', '👟', '👠', '👡', '👢', '👣', '👤', '👥', '👦', '👧', '👨', '👩', '👪', '👫', '👬', '👭', '👮', '👯', '👰', '👱', '👲', '👳', '👴', '👵', '👶', '👷', '👸', '👹', '👺', '👻', '👼', '👽', '👾', '👿', '💀', '💁', '💂', '💃', '💄', '💅', '💆', '💇', '💈', '💉', '💊', '💋', '💌', '💍', '💎', '💏', '💐', '💑', '💒', '💓', '💔', '💕', '💖', '💗', '💘', '💙', '💚', '💛', '💜', '💝', '💞', '💟', '💠', '💡', '💢', '💣', '💤', '💥', '💦', '💧', '💨', '💩', '💪', '💫', '💬', '💭', '💮', '💯', '💰', '💱', '💲', '💳', '💴', '💵', '💶', '💷', '💸', '💹', '💺', '💻', '💼', '💽', '💾', '💿', '📀', '📁', '📂', '📃', '📄', '📅', '📆', '📇', '📈', '📉', '📊', '📋', '📌', '📍', '📎', '📏', '📐', '📑', '📒', '📓', '📔', '📕', '📖', '📗', '📘', '📙', '📚', '📛', '📜', '📝', '📞', '📟', '📠', '📡', '📢', '📣', '📤', '📥', '📦', '📧', '📨', '📩', '📪', '📫', '📬', '📭', '📮', '📯', '📰', '📱', '📲', '📳', '📴', '📵', '📶', '📷', '📸', '📹', '📺', '📻', '📼', '📽', '📿', '🔀', '🔁', '🔂', '🔃', '🔄', '🔅', '🔆', '🔇', '🔈', '🔉', '🔊', '🔋', '🔌', '🔍', '🔎', '🔏', '🔐', '🔑', '🔒', '🔓', '🔔', '🔕', '🔖', '🔗', '🔘', '🔙', '🔚', '🔛', '🔜', '🔝', '🔞', '🔟', '🔠', '🔡', '🔢', '🔣', '🔤', '🔥', '🔦', '🔧', '🔨', '🔩', '🔪', '🔫', '🔬', '🔭', '🔮', '🔯', '🔰', '🔱', '🔲', '🔳', '🔴', '🔵', '🔶', '🔷', '🔸', '🔹', '🔺', '🔻', '🔼', '🔽', '🕉', '🕊', '🕋', '🕌', '🕍', '🕎', '🕐', '🕑', '🕒', '🕓', '🕔', '🕕', '🕖', '🕗', '🕘', '🕙', '🕚', '🕛', '🕜', '🕝', '🕞', '🕟', '🕠', '🕡', '🕢', '🕣', '🕤', '🕥', '🕦', '🕧', '🕯', '🕰', '🕳', '🕴', '🕵', '🕶', '🕷', '🕸', '🕹', '🕺', '🖇', '🖊', '🖋', '🖌', '🖍', '🖐', '🖕', '🖖', '🖤', '🖥', '🖨', '🖱', '🖲', '🖼', '🗂', '🗃', '🗄', '🗑', '🗒', '🗓', '🗜', '🗝', '🗞', '🗡', '🗣', '🗨', '🗯', '🗳', '🗺', '🗻', '🗼', '🗽', '🗾', '🗿', '😀', '😁', '😂', '😃', '😄', '😅', '😆', '😇', '😈', '😉', '😊', '😋', '😌', '😍', '😎', '😏', '😐', '😑', '😒', '😓', '😔', '😕', '😖', '😗', '😘', '😙', '😚', '😛', '😜', '😝', '😞', '😟', '😠', '😡', '😢', '😣', '😤', '😥', '😦', '😧', '😨', '😩', '😪', '😫', '😬', '😭', '😮', '😯', '😰', '😱', '😲', '😳', '😴', '😵', '😶', '😷', '😸', '😹', '😺', '😻', '😼', '😽', '😾', '😿', '🙀', '🙁', '🙂', '🙃', '🙄', '🙅', '🙆', '🙇', '🙈', '🙉', '🙊', '🙋', '🙌', '🙍', '🙎', '🙏', '🚀', '🚁', '🚂', '🚃', '🚄', '🚅', '🚆', '🚇', '🚈', '🚉', '🚊', '🚋', '🚌', '🚍', '🚎', '🚏', '🚐', '🚑', '🚒', '🚓', '🚔', '🚕', '🚖', '🚗', '🚘', '🚙', '🚚', '🚛', '🚜', '🚝', '🚞', '🚟', '🚠', '🚡', '🚢', '🚣', '🚤', '🚥', '🚦', '🚧', '🚨', '🚩', '🚪', '🚫', '🚬', '🚭', '🚮', '🚯', '🚰', '🚱', '🚲', '🚳', '🚴', '🚵', '🚶', '🚷', '🚸', '🚹', '🚺', '🚻', '🚼', '🚽', '🚾', '🚿', '🛀', '🛁', '🛂', '🛃', '🛄', '🛅', '🛋', '🛌', '🛍', '🛎', '🛏', '🛐', '🛑', '🛒', '🛕', '🛖', '🛗', '🛜', '🛝', '🛞', '🛟', '🛠', '🛡', '🛢', '🛣', '🛤', '🛥', '🛩', '🛫', '🛬', '🛰', '🛳', '🛴', '🛵', '🛶', '🛷', '🛸', '🛹', '🛺', '🛻', '🛼', '🟠', '🟡', '🟢', '🟣', '🟤', '🟥', '🟦', '🟧', '🟨', '🟩', '🟪', '🟫', '🟰', '🤌', '🤍', '🤎', '🤏', '🤐', '🤑', '🤒', '🤓', '🤔', '🤕', '🤖', '🤗', '🤘', '🤙', '🤚', '🤛', '🤜', '🤝', '🤞', '🤟', '🤠', '🤡', '🤢', '🤣', '🤤', '🤥', '🤦', '🤧', '🤨', '🤩', '🤪', '🤫', '🤬', '🤭', '🤮', '🤯', '🤰', '🤱', '🤲', '🤳', '🤴', '🤵', '🤶', '🤷', '🤸', '🤹', '🤺', '🤼', '🤽', '🤾', '🤿', '🥀', '🥁', '🥂', '🥃', '🥄', '🥅', '🥇', '🥈', '🥉', '🥊', '🥋', '🥌', '🥍', '🥎', '🥏', '🥐', '🥑', '🥒', '🥓', '🥔', '🥕', '🥖', '🥗', '🥘', '🥙', '🥚', '🥛', '🥜', '🥝', '🥞', '🥟', '🥠', '🥡', '🥢', '🥣', '🥤', '🥥', '🥦', '🥧', '🥨', '🥩', '🥪', '🥫', '🥬', '🥭', '🥮', '🥯', '🥰', '🥱', '🥲', '🥳', '🥴', '🥵', '🥶', '🥷', '🥸', '🥹', '🥺', '🥻', '🥼', '🥽', '🥾', '🥿', '🦀', '🦁', '🦂', '🦃', '🦄', '🦅', '🦆', '🦇', '🦈', '🦉', '🦊', '🦋', '🦌', '🦍', '🦎', '🦏', '🦐', '🦑', '🦒', '🦓', '🦔', '🦕', '🦖', '🦗', '🦘', '🦙', '🦚', '🦛', '🦜', '🦝', '🦞', '🦟', '🦠', '🦡', '🦢', '🦣', '🦤', '🦥', '🦦', '🦧', '🦨', '🦩', '🦪', '🦫', '🦬', '🦭', '🦮', '🦯', '🦰', '🦱', '🦲', '🦳', '🦴', '🦵', '🦶', '🦷', '🦸', '🦹', '🦺', '🦻', '🦼', '🦽', '🦾', '🦿', '🧀', '🧁', '🧂', '🧃', '🧄', '🧅', '🧆', '🧇', '🧈', '🧉', '🧊', '🧋', '🧌', '🧍', '🧎', '🧏', '🧐', '🧑', '🧒', '🧓', '🧔', '🧕', '🧖', '🧗', '🧘', '🧙', '🧚', '🧛', '🧜', '🧝', '🧞', '🧟', '🧠', '🧡', '🧢', '🧣', '🧤', '🧥', '🧦', '🧧', '🧨', '🧩', '🧪', '🧫', '🧬', '🧭', '🧮', '🧯', '🧰', '🧱', '🧲', '🧳', '🧴', '🧵', '🧶', '🧷', '🧸', '🧹', '🧺', '🧻', '🧼', '🧽', '🧾', '🧿', '🩰', '🩱', '🩲', '🩳', '🩴', '🩵', '🩶', '🩷', '🩸', '🩹', '🩺', '🩻', '🩼', '🪀', '🪁', '🪂', '🪃', '🪄', '🪅', '🪆', '🪇', '🪈', '🪉', '🪏', '🪐', '🪑', '🪒', '🪓', '🪔', '🪕', '🪖', '🪗', '🪘', '🪙', '🪚', '🪛', '🪜', '🪝', '🪞', '🪟', '🪠', '🪡', '🪢', '🪣', '🪤', '🪥', '🪦', '🪧', '🪨', '🪩', '🪪', '🪫', '🪬', '🪭', '🪮', '🪯', '🪰', '🪱', '🪲', '🪳', '🪴', '🪵', '🪶', '🪷', '🪸', '🪹', '🪺', '🪻', '🪼', '🪽', '🪾', '🪿', '🫀', '🫁', '🫂', '🫃', '🫄', '🫅', '🫆', '🫎', '🫏', '🫐', '🫑', '🫒', '🫓', '🫔', '🫕', '🫖', '🫗', '🫘', '🫙', '🫚', '🫛', '🫜', '🫟', '🫠', '🫡', '🫢', '🫣', '🫤', '🫥', '🫦', '🫧', '🫨', '🫩', '🫰', '🫱', '🫲', '🫳', '🫴', '🫵', '🫶', '🫷', '🫸', '‼', '⁉', '™', 'ℹ', '↔', '↕', '↖', '↗', '↘', '↙', '↩', '↪', '⌚', '⌛', '⌨', '⏏', '⏩', '⏪', '⏫', '⏬', '⏭', '⏮', '⏯', '⏰', '⏱', '⏲', '⏳', '⏸', '⏹', '⏺', 'Ⓜ', '▪', '▫', '▶', '◀', '◻', '◼', '◽', '◾', '☀', '☁', '☂', '☃', '☄', '☎', '☑', '☔', '☕', '☘', '☝', '☠', '☢', '☣', '☦', '☪', '☮', '☯', '☸', '☹', '☺', '♀', '♂', '♈', '♉', '♊', '♋', '♌', '♍', '♎', '♏', '♐', '♑', '♒', '♓', '♟', '♠', '♣', '♥', '♦', '♨', '♻', '♾', '♿', '⚒', '⚓', '⚔', '⚕', '⚖', '⚗', '⚙', '⚛', '⚜', '⚠', '⚡', '⚧', '⚪', '⚫', '⚰', '⚱', '⚽', '⚾', '⛄', '⛅', '⛈', '⛎', '⛏', '⛑', '⛓', '⛔', '⛩', '⛪', '⛰', '⛱', '⛲', '⛳', '⛴', '⛵', '⛷', '⛸', '⛹', '⛺', '⛽', '✂', '✅', '✈', '✉', '✊', '✋', '✌', '✍', '✏', '✒', '✔', '✖', '✝', '✡', '✨', '✳', '✴', '❄', '❇', '❌', '❎', '❓', '❔', '❕', '❗', '❣', '❤', '➕', '➖', '➗', '➡', '➰', '➿', '⤴', '⤵', '⬅', '⬆', '⬇', '⬛', '⬜', '⭐', '⭕', '〰', '〽', '㊗', '㊙', '' ); 6229 $partials = array( '🀄', '🃏', '🅰', '🅱', '🅾', '🅿', '🆎', '🆑', '🆒', '🆓', '🆔', '🆕', '🆖', '🆗', '🆘', '🆙', '🆚', '🇦', '🇨', '🇩', '🇪', '🇫', '🇬', '🇮', '🇱', '🇲', '🇴', '🇶', '🇷', '🇸', '🇹', '🇺', '🇼', '🇽', '🇿', '🇧', '🇭', '🇯', '🇳', '🇻', '🇾', '🇰', '🇵', '🈁', '🈂', '🈚', '🈯', '🈲', '🈳', '🈴', '🈵', '🈶', '🈷', '🈸', '🈹', '🈺', '🉐', '🉑', '🌀', '🌁', '🌂', '🌃', '🌄', '🌅', '🌆', '🌇', '🌈', '🌉', '🌊', '🌋', '🌌', '🌍', '🌎', '🌏', '🌐', '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘', '🌙', '🌚', '🌛', '🌜', '🌝', '🌞', '🌟', '🌠', '🌡', '🌤', '🌥', '🌦', '🌧', '🌨', '🌩', '🌪', '🌫', '🌬', '🌭', '🌮', '🌯', '🌰', '🌱', '🌲', '🌳', '🌴', '🌵', '🌶', '🌷', '🌸', '🌹', '🌺', '🌻', '🌼', '🌽', '🌾', '🌿', '🍀', '🍁', '🍂', '🍃', '🍄', '‍', '🟫', '🍅', '🍆', '🍇', '🍈', '🍉', '🍊', '🍋', '🟩', '🍌', '🍍', '🍎', '🍏', '🍐', '🍑', '🍒', '🍓', '🍔', '🍕', '🍖', '🍗', '🍘', '🍙', '🍚', '🍛', '🍜', '🍝', '🍞', '🍟', '🍠', '🍡', '🍢', '🍣', '🍤', '🍥', '🍦', '🍧', '🍨', '🍩', '🍪', '🍫', '🍬', '🍭', '🍮', '🍯', '🍰', '🍱', '🍲', '🍳', '🍴', '🍵', '🍶', '🍷', '🍸', '🍹', '🍺', '🍻', '🍼', '🍽', '🍾', '🍿', '🎀', '🎁', '🎂', '🎃', '🎄', '🎅', '🏻', '🏼', '🏽', '🏾', '🏿', '🎆', '🎇', '🎈', '🎉', '🎊', '🎋', '🎌', '🎍', '🎎', '🎏', '🎐', '🎑', '🎒', '🎓', '🎖', '🎗', '🎙', '🎚', '🎛', '🎞', '🎟', '🎠', '🎡', '🎢', '🎣', '🎤', '🎥', '🎦', '🎧', '🎨', '🎩', '🎪', '🎫', '🎬', '🎭', '🎮', '🎯', '🎰', '🎱', '🎲', '🎳', '🎴', '🎵', '🎶', '🎷', '🎸', '🎹', '🎺', '🎻', '🎼', '🎽', '🎾', '🎿', '🏀', '🏁', '🏂', '🏃', '♀', '️', '➡', '♂', '🏄', '🏅', '🏆', '🏇', '🏈', '🏉', '🏊', '🏋', '🏌', '🏍', '🏎', '🏏', '🏐', '🏑', '🏒', '🏓', '🏔', '🏕', '🏖', '🏗', '🏘', '🏙', '🏚', '🏛', '🏜', '🏝', '🏞', '🏟', '🏠', '🏡', '🏢', '🏣', '🏤', '🏥', '🏦', '🏧', '🏨', '🏩', '🏪', '🏫', '🏬', '🏭', '🏮', '🏯', '🏰', '🏳', '⚧', '🏴', '☠', '󠁧', '󠁢', '󠁥', '󠁮', '󠁿', '󠁳', '󠁣', '󠁴', '󠁷', '󠁬', '🏵', '🏷', '🏸', '🏹', '🏺', '🐀', '🐁', '🐂', '🐃', '🐄', '🐅', '🐆', '🐇', '🐈', '⬛', '🐉', '🐊', '🐋', '🐌', '🐍', '🐎', '🐏', '🐐', '🐑', '🐒', '🐓', '🐔', '🐕', '🦺', '🐖', '🐗', '🐘', '🐙', '🐚', '🐛', '🐜', '🐝', '🐞', '🐟', '🐠', '🐡', '🐢', '🐣', '🐤', '🐥', '🐦', '🔥', '🐧', '🐨', '🐩', '🐪', '🐫', '🐬', '🐭', '🐮', '🐯', '🐰', '🐱', '🐲', '🐳', '🐴', '🐵', '🐶', '🐷', '🐸', '🐹', '🐺', '🐻', '❄', '🐼', '🐽', '🐾', '🐿', '👀', '👁', '🗨', '👂', '👃', '👄', '👅', '👆', '👇', '👈', '👉', '👊', '👋', '👌', '👍', '👎', '👏', '👐', '👑', '👒', '👓', '👔', '👕', '👖', '👗', '👘', '👙', '👚', '👛', '👜', '👝', '👞', '👟', '👠', '👡', '👢', '👣', '👤', '👥', '👦', '👧', '👨', '💻', '💼', '🔧', '🔬', '🚀', '🚒', '🤝', '🦯', '🦰', '🦱', '🦲', '🦳', '🦼', '🦽', '⚕', '⚖', '✈', '❤', '💋', '👩', '👪', '👫', '👬', '👭', '👮', '👯', '👰', '👱', '👲', '👳', '👴', '👵', '👶', '👷', '👸', '👹', '👺', '👻', '👼', '👽', '👾', '👿', '💀', '💁', '💂', '💃', '💄', '💅', '💆', '💇', '💈', '💉', '💊', '💌', '💍', '💎', '💏', '💐', '💑', '💒', '💓', '💔', '💕', '💖', '💗', '💘', '💙', '💚', '💛', '💜', '💝', '💞', '💟', '💠', '💡', '💢', '💣', '💤', '💥', '💦', '💧', '💨', '💩', '💪', '💫', '💬', '💭', '💮', '💯', '💰', '💱', '💲', '💳', '💴', '💵', '💶', '💷', '💸', '💹', '💺', '💽', '💾', '💿', '📀', '📁', '📂', '📃', '📄', '📅', '📆', '📇', '📈', '📉', '📊', '📋', '📌', '📍', '📎', '📏', '📐', '📑', '📒', '📓', '📔', '📕', '📖', '📗', '📘', '📙', '📚', '📛', '📜', '📝', '📞', '📟', '📠', '📡', '📢', '📣', '📤', '📥', '📦', '📧', '📨', '📩', '📪', '📫', '📬', '📭', '📮', '📯', '📰', '📱', '📲', '📳', '📴', '📵', '📶', '📷', '📸', '📹', '📺', '📻', '📼', '📽', '📿', '🔀', '🔁', '🔂', '🔃', '🔄', '🔅', '🔆', '🔇', '🔈', '🔉', '🔊', '🔋', '🔌', '🔍', '🔎', '🔏', '🔐', '🔑', '🔒', '🔓', '🔔', '🔕', '🔖', '🔗', '🔘', '🔙', '🔚', '🔛', '🔜', '🔝', '🔞', '🔟', '🔠', '🔡', '🔢', '🔣', '🔤', '🔦', '🔨', '🔩', '🔪', '🔫', '🔭', '🔮', '🔯', '🔰', '🔱', '🔲', '🔳', '🔴', '🔵', '🔶', '🔷', '🔸', '🔹', '🔺', '🔻', '🔼', '🔽', '🕉', '🕊', '🕋', '🕌', '🕍', '🕎', '🕐', '🕑', '🕒', '🕓', '🕔', '🕕', '🕖', '🕗', '🕘', '🕙', '🕚', '🕛', '🕜', '🕝', '🕞', '🕟', '🕠', '🕡', '🕢', '🕣', '🕤', '🕥', '🕦', '🕧', '🕯', '🕰', '🕳', '🕴', '🕵', '🕶', '🕷', '🕸', '🕹', '🕺', '🖇', '🖊', '🖋', '🖌', '🖍', '🖐', '🖕', '🖖', '🖤', '🖥', '🖨', '🖱', '🖲', '🖼', '🗂', '🗃', '🗄', '🗑', '🗒', '🗓', '🗜', '🗝', '🗞', '🗡', '🗣', '🗯', '🗳', '🗺', '🗻', '🗼', '🗽', '🗾', '🗿', '😀', '😁', '😂', '😃', '😄', '😅', '😆', '😇', '😈', '😉', '😊', '😋', '😌', '😍', '😎', '😏', '😐', '😑', '😒', '😓', '😔', '😕', '😖', '😗', '😘', '😙', '😚', '😛', '😜', '😝', '😞', '😟', '😠', '😡', '😢', '😣', '😤', '😥', '😦', '😧', '😨', '😩', '😪', '😫', '😬', '😭', '😮', '😯', '😰', '😱', '😲', '😳', '😴', '😵', '😶', '😷', '😸', '😹', '😺', '😻', '😼', '😽', '😾', '😿', '🙀', '🙁', '🙂', '↔', '↕', '🙃', '🙄', '🙅', '🙆', '🙇', '🙈', '🙉', '🙊', '🙋', '🙌', '🙍', '🙎', '🙏', '🚁', '🚂', '🚃', '🚄', '🚅', '🚆', '🚇', '🚈', '🚉', '🚊', '🚋', '🚌', '🚍', '🚎', '🚏', '🚐', '🚑', '🚓', '🚔', '🚕', '🚖', '🚗', '🚘', '🚙', '🚚', '🚛', '🚜', '🚝', '🚞', '🚟', '🚠', '🚡', '🚢', '🚣', '🚤', '🚥', '🚦', '🚧', '🚨', '🚩', '🚪', '🚫', '🚬', '🚭', '🚮', '🚯', '🚰', '🚱', '🚲', '🚳', '🚴', '🚵', '🚶', '🚷', '🚸', '🚹', '🚺', '🚻', '🚼', '🚽', '🚾', '🚿', '🛀', '🛁', '🛂', '🛃', '🛄', '🛅', '🛋', '🛌', '🛍', '🛎', '🛏', '🛐', '🛑', '🛒', '🛕', '🛖', '🛗', '🛜', '🛝', '🛞', '🛟', '🛠', '🛡', '🛢', '🛣', '🛤', '🛥', '🛩', '🛫', '🛬', '🛰', '🛳', '🛴', '🛵', '🛶', '🛷', '🛸', '🛹', '🛺', '🛻', '🛼', '🟠', '🟡', '🟢', '🟣', '🟤', '🟥', '🟦', '🟧', '🟨', '🟪', '🟰', '🤌', '🤍', '🤎', '🤏', '🤐', '🤑', '🤒', '🤓', '🤔', '🤕', '🤖', '🤗', '🤘', '🤙', '🤚', '🤛', '🤜', '🤞', '🤟', '🤠', '🤡', '🤢', '🤣', '🤤', '🤥', '🤦', '🤧', '🤨', '🤩', '🤪', '🤫', '🤬', '🤭', '🤮', '🤯', '🤰', '🤱', '🤲', '🤳', '🤴', '🤵', '🤶', '🤷', '🤸', '🤹', '🤺', '🤼', '🤽', '🤾', '🤿', '🥀', '🥁', '🥂', '🥃', '🥄', '🥅', '🥇', '🥈', '🥉', '🥊', '🥋', '🥌', '🥍', '🥎', '🥏', '🥐', '🥑', '🥒', '🥓', '🥔', '🥕', '🥖', '🥗', '🥘', '🥙', '🥚', '🥛', '🥜', '🥝', '🥞', '🥟', '🥠', '🥡', '🥢', '🥣', '🥤', '🥥', '🥦', '🥧', '🥨', '🥩', '🥪', '🥫', '🥬', '🥭', '🥮', '🥯', '🥰', '🥱', '🥲', '🥳', '🥴', '🥵', '🥶', '🥷', '🥸', '🥹', '🥺', '🥻', '🥼', '🥽', '🥾', '🥿', '🦀', '🦁', '🦂', '🦃', '🦄', '🦅', '🦆', '🦇', '🦈', '🦉', '🦊', '🦋', '🦌', '🦍', '🦎', '🦏', '🦐', '🦑', '🦒', '🦓', '🦔', '🦕', '🦖', '🦗', '🦘', '🦙', '🦚', '🦛', '🦜', '🦝', '🦞', '🦟', '🦠', '🦡', '🦢', '🦣', '🦤', '🦥', '🦦', '🦧', '🦨', '🦩', '🦪', '🦫', '🦬', '🦭', '🦮', '🦴', '🦵', '🦶', '🦷', '🦸', '🦹', '🦻', '🦾', '🦿', '🧀', '🧁', '🧂', '🧃', '🧄', '🧅', '🧆', '🧇', '🧈', '🧉', '🧊', '🧋', '🧌', '🧍', '🧎', '🧏', '🧐', '🧑', '🧒', '🧓', '🧔', '🧕', '🧖', '🧗', '🧘', '🧙', '🧚', '🧛', '🧜', '🧝', '🧞', '🧟', '🧠', '🧡', '🧢', '🧣', '🧤', '🧥', '🧦', '🧧', '🧨', '🧩', '🧪', '🧫', '🧬', '🧭', '🧮', '🧯', '🧰', '🧱', '🧲', '🧳', '🧴', '🧵', '🧶', '🧷', '🧸', '🧹', '🧺', '🧻', '🧼', '🧽', '🧾', '🧿', '🩰', '🩱', '🩲', '🩳', '🩴', '🩵', '🩶', '🩷', '🩸', '🩹', '🩺', '🩻', '🩼', '🪀', '🪁', '🪂', '🪃', '🪄', '🪅', '🪆', '🪇', '🪈', '🪉', '🪏', '🪐', '🪑', '🪒', '🪓', '🪔', '🪕', '🪖', '🪗', '🪘', '🪙', '🪚', '🪛', '🪜', '🪝', '🪞', '🪟', '🪠', '🪡', '🪢', '🪣', '🪤', '🪥', '🪦', '🪧', '🪨', '🪩', '🪪', '🪫', '🪬', '🪭', '🪮', '🪯', '🪰', '🪱', '🪲', '🪳', '🪴', '🪵', '🪶', '🪷', '🪸', '🪹', '🪺', '🪻', '🪼', '🪽', '🪾', '🪿', '🫀', '🫁', '🫂', '🫃', '🫄', '🫅', '🫆', '🫎', '🫏', '🫐', '🫑', '🫒', '🫓', '🫔', '🫕', '🫖', '🫗', '🫘', '🫙', '🫚', '🫛', '🫜', '🫟', '🫠', '🫡', '🫢', '🫣', '🫤', '🫥', '🫦', '🫧', '🫨', '🫩', '🫰', '🫱', '🫲', '🫳', '🫴', '🫵', '🫶', '🫷', '🫸', '‼', '⁉', '™', 'ℹ', '↖', '↗', '↘', '↙', '↩', '↪', '⃣', '⌚', '⌛', '⌨', '⏏', '⏩', '⏪', '⏫', '⏬', '⏭', '⏮', '⏯', '⏰', '⏱', '⏲', '⏳', '⏸', '⏹', '⏺', 'Ⓜ', '▪', '▫', '▶', '◀', '◻', '◼', '◽', '◾', '☀', '☁', '☂', '☃', '☄', '☎', '☑', '☔', '☕', '☘', '☝', '☢', '☣', '☦', '☪', '☮', '☯', '☸', '☹', '☺', '♈', '♉', '♊', '♋', '♌', '♍', '♎', '♏', '♐', '♑', '♒', '♓', '♟', '♠', '♣', '♥', '♦', '♨', '♻', '♾', '♿', '⚒', '⚓', '⚔', '⚗', '⚙', '⚛', '⚜', '⚠', '⚡', '⚪', '⚫', '⚰', '⚱', '⚽', '⚾', '⛄', '⛅', '⛈', '⛎', '⛏', '⛑', '⛓', '⛔', '⛩', '⛪', '⛰', '⛱', '⛲', '⛳', '⛴', '⛵', '⛷', '⛸', '⛹', '⛺', '⛽', '✂', '✅', '✉', '✊', '✋', '✌', '✍', '✏', '✒', '✔', '✖', '✝', '✡', '✨', '✳', '✴', '❇', '❌', '❎', '❓', '❔', '❕', '❗', '❣', '➕', '➖', '➗', '➰', '➿', '⤴', '⤵', '⬅', '⬆', '⬇', '⬜', '⭐', '⭕', '〰', '〽', '㊗', '㊙', '' ); 6230 // END: emoji arrays 6231 6232 if ( 'entities' === $type ) { 6233 return $entities; 6234 } 6235 6236 return $partials; 6237 } 6238 6239 /** 6240 * Shortens a URL, to be used as link text. 6241 * 6242 * @since 1.2.0 6243 * @since 4.4.0 Moved to wp-includes/formatting.php from wp-admin/includes/misc.php and added $length param. 6244 * 6245 * @param string $url URL to shorten. 6246 * @param int $length Optional. Maximum length of the shortened URL. Default 35 characters. 6247 * @return string Shortened URL. 6248 */ 6249 function url_shorten( $url, $length = 35 ) { 6250 $stripped = str_replace( array( 'https://', 'http://', 'www.' ), '', $url ); 6251 $short_url = untrailingslashit( $stripped ); 6252 6253 if ( strlen( $short_url ) > $length ) { 6254 $short_url = substr( $short_url, 0, $length - 3 ) . '…'; 6255 } 6256 return $short_url; 6257 } 6258 6259 /** 6260 * Sanitizes a hex color. 6261 * 6262 * Returns either '', a 3 or 6 digit hex color (with #), or nothing. 6263 * For sanitizing values without a #, see sanitize_hex_color_no_hash(). 6264 * 6265 * @since 3.4.0 6266 * 6267 * @param string $color 6268 * @return string|void 6269 */ 6270 function sanitize_hex_color( $color ) { 6271 if ( '' === $color ) { 6272 return ''; 6273 } 6274 6275 // 3 or 6 hex digits, or the empty string. 6276 if ( preg_match( '|^#([A-Fa-f0-9]{3}){1,2}$|', $color ) ) { 6277 return $color; 6278 } 6279 } 6280 6281 /** 6282 * Sanitizes a hex color without a hash. Use sanitize_hex_color() when possible. 6283 * 6284 * Saving hex colors without a hash puts the burden of adding the hash on the 6285 * UI, which makes it difficult to use or upgrade to other color types such as 6286 * rgba, hsl, rgb, and HTML color names. 6287 * 6288 * Returns either '', a 3 or 6 digit hex color (without a #), or null. 6289 * 6290 * @since 3.4.0 6291 * 6292 * @param string $color The color value to sanitize. Can be with or without a #. 6293 * @return string|null The sanitized hex color without the hash prefix, 6294 * empty string if input is empty, or null if invalid. 6295 */ 6296 function sanitize_hex_color_no_hash( $color ) { 6297 $color = ltrim( $color, '#' ); 6298 6299 if ( '' === $color ) { 6300 return ''; 6301 } 6302 6303 return sanitize_hex_color( '#' . $color ) ? $color : null; 6304 } 6305 6306 /** 6307 * Ensures that any hex color is properly hashed. 6308 * Otherwise, returns value untouched. 6309 * 6310 * This method should only be necessary if using sanitize_hex_color_no_hash(). 6311 * 6312 * @since 3.4.0 6313 * 6314 * @param string $color The color value to add the hash prefix to. Can be with or without a #. 6315 * @return string The color with the hash prefix if it's a valid hex color, 6316 * otherwise the original value. 6317 */ 6318 function maybe_hash_hex_color( $color ) { 6319 $unhashed = sanitize_hex_color_no_hash( $color ); 6320 if ( $unhashed ) { 6321 return '#' . $unhashed; 6322 } 6323 6324 return $color; 6325 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated : Thu Sep 18 08:20:05 2025 | Cross-referenced by PHPXref |