本文整理汇总了PHP中Color::red方法的典型用法代码示例。如果您正苦于以下问题:PHP Color::red方法的具体用法?PHP Color::red怎么用?PHP Color::red使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Color
的用法示例。
在下文中一共展示了Color::red方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: printCard
function printCard($cfg)
{
$suit = self::$suits[$cfg->charset][$this->suit];
if ($cfg->charset == CHARSET_REAL) {
$suit = html_entity_decode($suit, ENT_COMPAT, 'UTF-8');
}
$val = $this->face;
$ret = " {$val}{$suit}";
if ($this->suit > 2) {
$col = 'red';
}
if ($cfg->color && $col) {
$c = new Color();
$ret = $c->red($ret);
}
return $ret;
}
示例2: equals
/**
* @param \OttawaDeveloper\Tools\ColorAnalyzer\Color $compareTo
*
* @return boolean
*/
public function equals(Color $compareTo)
{
return $compareTo->red() === $this->red() && $compareTo->green() === $this->green() && $compareTo->blue() === $this->blue() && $compareTo->alpha() === $this->alpha();
}
示例3: file_get_contents
$prefix = file_get_contents($dir . 'prefix');
}
if (file_exists($dir . 'suffix')) {
$suffix = file_get_contents($dir . 'suffix');
}
foreach (test_files($dir) as $file) {
$total++;
list($src, $result) = read_test($file);
$result = trim($result);
$eval_out = trim(eval_output($prefix . $src . $suffix));
if ($eval_out == $result) {
$correct++;
echo '.';
} else {
add_error($file, $eval_out, $result);
$fail++;
echo 'e';
}
}
}
print_all_errors();
if ($fail) {
Color::red();
} else {
Color::green();
}
puts("Correct: " . $correct);
puts("Fail: " . $fail);
puts("Total: " . $total);
Color::reset();
unlink('tmp.php');