本文整理汇总了PHP中Color::NIL方法的典型用法代码示例。如果您正苦于以下问题:PHP Color::NIL方法的具体用法?PHP Color::NIL怎么用?PHP Color::NIL使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Color
的用法示例。
在下文中一共展示了Color::NIL方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct(Buffer $buf)
{
$this->buf = $buf;
$this->color = Color::NIL();
}
示例2: exportRow
private function exportRow($row, $x, $w)
{
$color = Color::NIL();
$ret = '';
$sz = count($this->buf[$row]);
for ($i = $x; $i < $x + $w and $i < $sz; $i++) {
if (!isset($this->buf[$row][$i])) {
echo sprintf("Dump: row = %s, i = %s, x = %s, w = %s\n", $row, $i, $x, $w);
//echo var_export($this->buf[$row]) . "\n";
exit(1);
}
list($char, $clr) = $this->buf[$row][$i];
if ($color != $clr) {
$ret .= $clr->export();
$color = $clr;
}
$ret .= $char;
if (WString::isWide($char)) {
$i++;
}
}
if ($x + $w > $sz) {
if ($color != Color::NIL()) {
$ret .= Color::NIL()->export();
}
$ret .= str_repeat(' ', $x + $w - $sz);
}
return $ret;
}