strip() public static méthode

Strips ANSI color codes from a string
public static strip ( string $string ) : string
$string string String to strip
Résultat string
Exemple #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;
 }
Exemple #2
0
 protected function pad($str)
 {
     return str_repeat(' ', strlen(Color::strip(Color::convert($str))));
 }