Guest User

Untitled

a guest
May 20th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function ColorConverter(string $entree)
  2. {
  3. if((strlen($entree) == 7) AND ($entree[0] == '#')) {
  4.  
  5. $resultat[0] = hexdec(substr($entree,1,2));
  6. $resultat[1] = hexdec(substr($entree,3,2));
  7. $resultat[2] = hexdec(substr($entree,5,2));
  8.  
  9. return $resultat;
  10.  
  11. } else {
  12.  
  13. return 'Le chiffre en entrée n\'est pas bon';
  14. }
Add Comment
Please, Sign In to add comment