ReferKey results different sources
Htet Nyi Nyi Aungにより
1. MAI
1.1. $outward[$i]['referKey'] = Cachekeys::createCacheKey() . $i . '-' . self::$maiKeyId;
1.2. $maiKeyId = 170;
1.3. $i is a variable, typically used as an index in a foreach or for loop. it represents the current iteration number of a loop, such as 0, 1, 2, 3, etc.
2. flightroute24
2.1. $referKey = CacheKeys::createCacheKey() . $routeKey_referKey . '-' . self::$route24KeyId;
2.2. $route24KeyId = 142;
3. travelfusion
3.1. $outwardroute[$i]['referKey'] = CacheKeys::createCachekey() . $i . '-' . self::$tfkeyId;
3.2. $tfkeyId = 328;
3.3. $i is a variable, typically used as an index in a foreach or for loop. it represents the current iteration number of a loop, such as 0, 1, 2, 3, etc.
4. sgairline
4.1. $onewayRoute[$i]['referKey'] = CacheKeys::createCacheKey() . '~' . $routeKey . '+' . $offerItemKey . '+' . $ownerCode . '+' . $i . '-' . self::$sgAirlineKeyId;
4.2. sgAirlineKeyId = 306;
5. airkbz
5.1. $outward[$i]['referKey'] = CacheKeys::createCacheKey() . $i . '-' . self::$airkbzKeyId;
5.2. $airkbzKeyId = 851;
5.3. $i is a variable, typically used as an index in a foreach or for loop. it represents the current iteration number of a loop, such as 0, 1, 2, 3, etc.
6. airthanlwin
6.1. $outward['referKey'] = CacheKeys::createCacheKey() . $itnyKey . '-' . self::$airThlwinKeyId;
6.2. $airThlwinKeyId = 303;
6.3. $itnyKey is typically an integer (e.g., 0, 1, 2, ...) if Itineraries is a numerically indexed array.
7. aocrs
7.1. $outwardRoute[$i]['referKey'] = CacheKeys::createCachekey() . $i . '-' . self::$aocrsKeyId;
7.2. $aocrsKeyId = 346;
7.3. $i is a variable, typically used as an index in a foreach or for loop. it represents the current iteration number of a loop, such as 0, 1, 2, 3, etc.
8. MNA
8.1. need to do
9. AMD
9.1. CacheKeys::createCacheKey() . $timeLoop . '-' . self::$amdKeyId;
9.2. $amdKeyId = 121;
9.3. $timeLoop is a variable, typically used as an index in a foreach or for loop. it represents the current iteration number of a loop, such as 0, 1, 2, 3, etc.