wppaste
WordPress

POP3::stripControls( $string ): string

Source
wp-includes/PHPMailer/POP3.php:479

Strip all control chars from a string.

Parameters

$string

Return

string

Source

    protected static function stripControls($string)    {        return preg_replace('/[\x00-\x1F\x7F]/u', '', $string);    }

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/PHPMailer/POP3.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.