m_iStart = $iStart; $this->m_iEnd = $iEnd; $this->m_iStep = $iStep; } protected function LoadValues($aArgs) { $iValue = $this->m_iStart; for ($iValue = $this->m_iStart; $iValue <= $this->m_iEnd; $iValue += $this->m_iStep) { $this->m_aValues[$iValue] = $iValue; } return true; } }