Guest User

Untitled

a guest
Jan 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php print_r(hex2RGB('00ff67')); ?>
  2. #Out
  3. Array
  4. (
  5. [red] => 0
  6. [green] => 255
  7. [blue] => 103
  8. )
  9. <?php echo hex2RGB('#00ff67',true ); ?>
  10. __#Out__
  11. 0,255,103
  12.  
  13. <?php echo hex2RGB('#2f6',true ); ?>
  14. __#Out__
  15. 34,255,102
  16.  
  17. <?php echo hex2RGB('#22ff66',true ); ?>
  18. __#Out__
  19. 34,255,102
  20. <?php print_r(hex2RGB('##22ff66')); ?>
  21. __#Out__
  22. Array
  23. (
  24. [red] => 34
  25. [green] => 255
  26. [blue] => 102
  27. )
Add Comment
Please, Sign In to add comment