Keys →
Functions ↓
function colorShow () {#-k color format#- takes a variable # of colors as args and builds a table to show them.#-p $col - opt - Hex RGB color (Must be in the form #hhhhhh)#-d 2/12/21 Added $raw = debug_backtrace(); $sout = "<table><tr>\n"; foreach ($raw[0]['args'] as $col) { $sout .= colorShowFormat($col)."\n"; } $sout .= "</tr></table>\n"; echo $sout; }?>