duanfengtuo6012 2015-06-18 07:32
浏览 72
已采纳

在另一个函数php中获取一个函数的数组输出

I have below controller function of codeigniter,

public function add_attachments($openid)
{
            $config = array(
                    'upload_path' => './uploads/attachments/',
                    'allowed_types' => 'gif|jpg|png|jpeg|doc|pdf',
                    'max_size' => '1024000000',
                    'multi' => 'all'
                ); 
            $this->load->library('upload', $config);   
            if ( ! $this->upload->do_upload())
            {
                $error = array('error' => $this->upload->display_errors()); 
            }
            else
            {
                $data = $this->upload->data();  
            }
            $new_array = array_column ($data, 'full_path');         
}

I can get output of $new_array,

But i want to use this output in another function which is just below that in same class,

example,

public function getback()
{
print_r($new_array);
}

in short, once 1 function is executed, some values stored in variable and need to use in another function,

How can i do that?

Thanks,

  • 写回答

1条回答 默认 最新

  • dougao1106 2015-06-18 07:34
    关注

    Simply pass that value within that function as

    public function add_attachments($openid) {
        $config = array(
            'upload_path' => './uploads/attachments/',
            'allowed_types' => 'gif|jpg|png|jpeg|doc|pdf',
            'max_size' => '1024000000',
            'multi' => 'all'
        );
        $this->load->library('upload', $config);
        if (!$this->upload->do_upload()) {
            $error = array('error' => $this->upload->display_errors());
        } else {
            $data = $this->upload->data();
        }
        $new_array = array_column($data, 'full_path');
        $this->getback($new_array);
    }
    
    public function getback($new_array = array()) {
        print_r($new_array);
    }
    

    Edited

    Passing data using js

    public function add_attachments($openid) {
       //your code...
       echo json_encode($new_array);exit;
    }
    

    Now within your ajax success function

     success:function(data){
         var data = $.parseJSON(data)
         //send it to your another function
     }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥88 实在没有想法,需要个思路
  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败
  • ¥15 MapReduce实现倒排索引失败
  • ¥15 ZABBIX6.0L连接数据库报错,如何解决?(操作系统-centos)