I'm doing some image processing in php and normally I never use array in php before.
I have to keep the value of rgb value of hold image in 3 dimensional array.
For example, rgbArray[][][]
the first [] is represent th weight, the second[] use to keep height and the last one is use to keep either red,greed or blue. How can i create an array in php that can keep this set of value.
Thank you in advance.