mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-29 12:52:43 +00:00
6 lines
96 B
PHP
6 lines
96 B
PHP
<?php
|
|
$red = 255;
|
|
$green = 255;
|
|
$blue = 100;
|
|
printf('#%X%X%X', $red, $green, $blue); // #FFFF64
|