本文整理汇总了PHP中Convert::rgb2hsla方法的典型用法代码示例。如果您正苦于以下问题:PHP Convert::rgb2hsla方法的具体用法?PHP Convert::rgb2hsla怎么用?PHP Convert::rgb2hsla使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Convert
的用法示例。
在下文中一共展示了Convert::rgb2hsla方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: css2hsla
public static function css2hsla($css)
{
if (strpos($css, "hsl(") !== false) {
$hsl = str_replace(["%", "hsl(", ")", " "], '', $css);
return Convert::hsl2hsla($hsl);
} else {
if (strpos($css, "rgb(") !== false) {
$rgb = str_replace(["rgb(", ")", " "], '', $css);
return Convert::rgb2hsla($rgb);
} else {
if (strpos($css, "#") !== false) {
$hex = str_replace(["#", " "], '', $css);
return Convert::hex2hsla($hex);
} else {
if (strpos($css, "hsla(") !== false) {
$hsla = str_replace(["%", "hsla(", ")"], '', $css);
return $hsla;
} else {
if (strpos($css, "rgba(") !== false) {
$rgba = str_replace(["rgba(", ")"], '', $css);
return Convert::rgba2hsla($rgba);
}
}
}
}
}
}