PHP:将速记十六进制颜色转换为常规颜色

发布于 2024-08-25 15:34:22 字数 116 浏览 4 评论 0原文

我正在尝试创建一个函数,将短手十六进制颜色转换为长十六进制颜色。

例如,如果有人提交“f60”,它将转换为“ff6600”。我知道我需要重复每个数字本身,但是最有效的方法是什么?

谢谢。

I'm trying to make a function that will take short hand hex color to the long hex color.

For example if someone submits "f60" it will convert to "ff6600". I understand I need to repeat each number as itself, but what is the most efficient way to do this?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

猫九 2024-09-01 15:34:22

这应该有效。但是,由于精确的 strlen 比较,您需要确保字符串前面没有添加 #

// Done backwards to avoid destructive overwriting
// Example: f60 -> ff6600
if (strlen($color) == 3) {
    $color[5] = $color[2]; // f60##0
    $color[4] = $color[2]; // f60#00
    $color[3] = $color[1]; // f60600
    $color[2] = $color[1]; // f66600
    $color[1] = $color[0]; // ff6600
}

This should work. However, you'll want to make sure the strings aren't prepended with a # due to the exact strlen comparison.

// Done backwards to avoid destructive overwriting
// Example: f60 -> ff6600
if (strlen($color) == 3) {
    $color[5] = $color[2]; // f60##0
    $color[4] = $color[2]; // f60#00
    $color[3] = $color[1]; // f60600
    $color[2] = $color[1]; // f66600
    $color[1] = $color[0]; // ff6600
}
一杆小烟枪 2024-09-01 15:34:22

$fullColor = $color[0].$color[0].$color[1].$color[1].$color[2].$color[2];

您可以访问字符将字符串作为数组。

$fullColor = $color[0].$color[0].$color[1].$color[1].$color[2].$color[2];

You can access characters of a string as an array.

战皆罪 2024-09-01 15:34:22

这个问题不能错过好的旧正则表达式:D

 $color = preg_replace('/#([\da-f])([\da-f])([\da-f])/i', '#\1\1\2\2\3\3', $color);

虽然不是最好的解决方案......

this question cannot miss the good old regexes :D

 $color = preg_replace('/#([\da-f])([\da-f])([\da-f])/i', '#\1\1\2\2\3\3', $color);

not the best solution though …

陪我终i 2024-09-01 15:34:22

不是最有效的,而是替代方案
有了这些,您可以复制每种长度的每种字符串,而不仅仅是 3 作为十六进制颜色

   <?php
     $double='';
     for($i=0;$i<strlen($str);$i++){
            $double.=$str[$i].$str[$i];
     }
   ?>

,或者

<?php
 $str="FCD";
 $split=str_split($str);
 $str='';
 foreach($split as $char) $str.=$char.$char;
 echo $str;
?>

您也可以使用正则表达式或其他...

Not the most efficient, but an alternative
with these you can duplicate every kind of string with every length not only 3 as Hex colors

   <?php
     $double='';
     for($i=0;$i<strlen($str);$i++){
            $double.=$str[$i].$str[$i];
     }
   ?>

or

<?php
 $str="FCD";
 $split=str_split($str);
 $str='';
 foreach($split as $char) $str.=$char.$char;
 echo $str;
?>

You could also use regex or other...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文