附加到json_encode pho

时间:2015-05-17 13:06:52

标签: php

我正在尝试附加到json数据,但它没有工作它只是贿赂一个空的结果文件,看到你只是附加到jsoneconde的输出,但也许我做错了。

//我们只想在这里使用简单的php json编码,不需要过于复杂。

public function generate_json($table_data)
{
    if($table_data)
    {            
       $table_data= $this->get_property_gallery_data($table_data);
       return json_encode($table_data);
    }

 }
/**
 * Function to get the table data for the items of a property
 * @author David Buckley
 */


public  function get_property_gallery_data($property_id)
{
      $where = $this->get_query_where();
      $query = "SELECT * FROM `#__{$this->items_table}` WHERE 1 " . $where;         
      $galleries = wpl_db::select($query, 'loadObjectList');        

      return $galleries;

}

1 个答案:

答案 0 :(得分:0)

您未在方法$property_id中使用参数get_property_gallery_data

我真的不明白你在这里要做什么,但我想如果你没有选择正确的属性,你就无法从get_property_gallery_data获得正确的数据。因此json_encode将无需编码。