0

我正在尝试将十六进制数转换为正确的css格式:

$white = hexdec('#ffffff');

//Loops for a bunch of colours
for( $i = 0 ; $i <= $white ; $i=$i+5000 ) 
{
    //set default css background-color property
    $backgroundValue = dechex( $i );

    //if there are less of 7 characters (ex. #fa444, or #32F, ...)  
    if( $numLen = strlen( dechex( $i )) < 7 ) 
    {
        //insert (7 - numbers of characters) number of zeros after # 
        for ( $j = 0 ; $j < 7 - $numLen ; $j++ )
            $backgroundValue = strtr( $backgroundValue, '#', '#0' );                
    }
    //echo each div with each background-color property. 
    echo '<div class="colour" style="width: 10%; float: left; background: '.$backgroundValue.';">'.dechex($i).'</div>';
}

但这不起作用。我怎么能把十六进制数变成一个字符串,比如:#FFFFFF

更新:

问题是我没有将 传递#到字符串的开头:$backgroundValue = '#'.dechex( $i );

此代码工作正常:

        $white = hexdec('#ffffff');
        for( $i = 0 ; $i <= $white ; $i=$i+10000 ) 
        {
            $backgroundValue = '#'.dechex( $i );
            $numLen = strlen( dechex( $i ));

            if( $numLen < 6 ) 
            {

                for ( $j = 0 ; $j < (6 - $numLen) ; $j++ )
                    $backgroundValue = str_replace( '#', '#0', $backgroundValue );              
            }

            echo '<div class="colour" style="width: 10%; float: left; background: '.$backgroundValue.';">'.$backgroundValue.'</div>';
        } 
4

1 回答 1

1

为什么不简单地使用str_repeat

$end = 0xffffff;

for ($i = 0; $i < $end; $i += 5000) {
    $color = (string) dechex($i);
    $backgroundValue = '#' . str_repeat('0', 6 - strlen($color)) . $color;
    echo '<div class="colour" style="width: 10%; float: left; background: '.$backgroundValue.';">'.dechex($i).'</div>';
}

你也可以使用 sprintf

$backgroundValue = sprintf('#%06x', $i);
于 2013-11-11T12:37:00.097 回答