Ben GD bir ızgara oluşturma ve bunu yapmak için doğru yolu olup olmadığını merak ediyordum.
Ben 2 diziler var. Bir bütün X değerleri içeren, diğer tüm Y değerleri içerir.
foreach ($xpointsArray as $xvalue) {
foreach ($ypointsArray as $yvalue) {
// Draw point at coordinates $xvalue, $yvalue
}
}
I just think there must be a more elegant way to set this up, and I would like to further access the points values without doing this every time.