1

$this->find('all',$query); のようなクエリがあります 。.このクエリの結果配列を通常の php と同じように取得するにはどうすればよいですか?

4

1 に答える 1

0
$this->getResultInNormalFormat($this->find('all',$query),array('alias1','alias2','alias2'));    
    function getResultInNormalFormat($query_result,$tables){
        $extracted_array = array();
        $i = TRUE;
        foreach($tables as $table){
            $extracted_arrays[] =Set::extract($query_result,'{n}.'.$table) ;
            }
        foreach($extracted_arrays as $extracted_array){
            if($i){
              $merged_array = (Set::merge($extracted_array));
            }
            else{
              $merged_array = (Set::merge($extracted_array,$merged_array));
            }
            $i = FALSE;
            }
        return $merged_array;
         }
于 2012-07-28T05:42:45.597 に答える