BxDolTwigModule::_getCleanIdsArray PHP Method

_getCleanIdsArray() public method

public _getCleanIdsArray ( $sIds, $sDivider = ',' )
    function _getCleanIdsArray($sIds, $sDivider = ',')
    {
        $a = explode($sDivider, $sIds);
        $aRet = array();
        foreach ($a as $iId) {
            if (!(int) $iId) {
                continue;
            }
            $aRet[] = (int) $iId;
        }
        return $aRet;
    }