コード例 #1
0
 /**
  * @return array
  */
 public function getPrepareParams()
 {
     foreach ($this->paramsPortion as $key => $portion) {
         if (!$key) {
             continue;
         }
         $value = Operations::getPrepareParam($portion, $this->params[$key]);
         $this->bindParams[$key] = $value;
     }
     return $this->bindParams;
 }