Quick actions

cmd+k|ctrl+k

Navigation

Languages

Generate Random Hexa Color with PHP

Snippet info

Language

Php

Visibility

public

Author

ryandfbasketball12

Created

2023-02-11T16:53:41.923363Z

Updated

2023-02-11T16:53:41.923363Z

<?php

function random_color_part() {
    return str_pad( dechex( mt_rand( 0, 255 ) ), 2, '0', STR_PAD_LEFT);
}

function random_color() {
    return '#'. random_color_part() . random_color_part() . random_color_part();
}

echo random_color();
INFO