Horde_Cli::bold PHP 메소드

bold() 공개 메소드

Returns a bold version of $text.
public bold ( string $text ) : string
$text string The text to bold.
리턴 string The bolded text.
    public function bold($text)
    {
        return $this->_bold_start . $text . $this->_bold_end;
    }

Usage Example

예제 #1
0
파일: Output.php 프로젝트: jubinpatel/horde
 public function bold($text)
 {
     if ($this->_nocolor) {
         $this->_cli->writeln($text);
     } else {
         $this->_cli->writeln($this->_cli->bold($text));
     }
 }
All Usage Examples Of Horde_Cli::bold