コード例 #1
0
ファイル: AjkBroker.php プロジェクト: emilymwang8/ajk-broker
 private static function getBrokerPriceInfo($brokerId, $startDate, $endDate)
 {
     $brokerPriceInfoList = Model_Broker_AdStatusSaleLog::getBrokerPriceInfo($brokerId, $startDate, $endDate);
     if (empty($brokerPriceInfoList)) {
         return array();
     }
     $result = array();
     foreach ($brokerPriceInfoList as $brokerPriceInfo) {
         $result[$brokerPriceInfo['dayDate']] = $brokerPriceInfo;
     }
     return $result;
 }