コード例 #1
0
ファイル: html_element.php プロジェクト: 2626suke/curryfw
 /**
  * Set indent char for human readable
  *
  * @param string $char
  * @param int $length
  * @return void
  */
 public static function setIndentChar($char = " ", $length = 2)
 {
     if ($char === false) {
         self::$_indent = '';
     } else {
         self::$_indent = str_repeat($char, $length);
     }
 }