Created
October 16, 2021 15:22
-
-
Save Octagon-simon/cdc418cfddbe9e73184bce22e2c928ba to your computer and use it in GitHub Desktop.
create array of colors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //create a color hex | |
| $a=array( | |
| "red"=>[255, 0, 0], | |
| "green"=>[0, 155, 6], | |
| "blue"=>[0, 0, 255], | |
| "black"=>[0,0,0] | |
| ); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment