Phrozn\Outputter\Console\Color::strip PHP Method

strip() public static method

Strips ANSI color codes from a string
public static strip ( string $string ) : string
$string string String to strip
return string
    public static function strip($string)
    {
        return self::getInstance()->getConsoleColorer()->strip($string);
    }

Usage Example

Example #1
0
 /**
  * Writes the message $msg to STDERR.
  *
  * @param string $msg The message to output
  * @param string $status Output status
  *
  * @return \Phrozn\Outputter
  */
 public function stderr($msg, $status = self::STATUS_FAIL)
 {
     if (defined('STDERR')) {
         fwrite(STDERR, $msg);
     } else {
         $msg = Color::strip(Color::convert($msg));
         $this->lines[] = trim($msg);
     }
     return $this;
 }
All Usage Examples Of Phrozn\Outputter\Console\Color::strip