hex-naar-rgb

Gesponsorde koppelingen

PHP script bestanden

  1. hex-naar-rgb

« Lees de omschrijving en reacties

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
function getrgb($color){
$chars = preg_split('//', $color, -1, PREG_SPLIT_NO_EMPTY);
//split karaters
$color = array();
//maak array
$char[0] = $chars[1].$chars[2];
$char[1] = $chars[3].$chars[4];
$char[2] = $chars[5].$chars[6];
$color[0] = hexdec($char[0]);
$color[1] = hexdec($char[1]);
$color[2] = hexdec($char[2]);
//berekend alles
return $color;
}

if(!empty($_GET['color'])){
$rgb = getrgb($_GET['color']);
//roep fuctie op
echo $_GET['color']." geeft een RGB kleur van Red:".$rgb[0].", Green:".$rgb[1]." en Blue:".$rgb[2];
//eco alles
}
else
{
?>

<form action='
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?=$_SERVER["PHP_SELF"];?>
' method='get'>
Kleur:<input type='text' name='color' value='#'/><input type='submit' value='Get RBG Code'></form>
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
<?
}
?>

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.