wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_iso_descrambler › WordPress Function

Seit1.2.0
Veraltetn/v
wp_iso_descrambler ( $subject )
Parameter:
  • (string) $subject Subject line.
    Erforderlich: Ja
Gibt zurück:
  • (string) Converted string to ASCII.
Definiert in:
Codex:

Converts to ASCII from email subjects.



Quellcode

function wp_iso_descrambler( $subject ) {
	/* this may only work with iso-8859-1, I'm afraid */
	if ( ! preg_match( '#\=\?(.+)\?Q\?(.+)\?\=#i', $subject, $matches ) ) {
		return $subject;
	}

	$subject = str_replace( '_', ' ', $matches[2] );
	return preg_replace_callback( '#\=([0-9a-f]{2})#i', '_wp_iso_convert', $subject );
}