为什么在控制器Codeigniter中未处理返回后的过程

时间:2019-05-04 03:21:53

标签: php json codeigniter

我正在另一个网站API的帮助下开发应用程序。在该方案中,我必须响应一个征兆,即我正在接收数据详细信息,并且在一种状态下必须再次向其API发送GET请求

this is the schme

我的代码就是这样

public function confirm(){
        $result = json_decode(file_get_contents('php://input'), true);

        return $this->output
                    ->set_content_type('application/json')
                    ->set_status_header(200)
                    ->set_output(json_encode(array(
                        'status' => 'OK',
                        'message' => 'Message from merchant if any'
                    )));

        //kirim get untuk confirm order
        $url = $this->ci->config->item("kredivo_api_link_confirm");

        //load libary kredivo
        $this->load->library('CoreKredivo','corekredivo');

        //sent to v2/update
        $confirm_order = array(
            'transaction_id' => 'e75e5b62-5432-4d72-98b4-c5e938c6fbd9',
            'signature_key'  => 'a7Ijx%2FWgv02I4rvPQSld07uQO9TNMHg%2FFcJsS7EhA2GRKLgKiiYbYrHaLiuMKcG4cG98Iw0vTOPUgeHOZsPhqv3wvAGKgMDgEEMxMmZS3uXG0JIOzdFQc5s0zJ5qlhKZ',
        );

        //kirim data ke confirmation core kredivo
        $confirmation = $this->corekredivo->confirmOrder($url,$confirm_order);

        //menerima data dari core kredivo dan melakukan decode
        $finalResponse_payment = json_decode($confirmation,true);

        //untuk check
        $data = array(
            '_content' => 'shop/kredivo_2',
            '_title' => 'Tes Konfirmasi',
            '_respon' => $finalResponse_payment
        );

问题是我在本节中退货

return $this->output
                    ->set_content_type('application/json')
                    ->set_status_header(200)
                    ->set_output(json_encode(array(
                        'status' => 'OK',
                        'message' => 'Message from merchant if any'
                    )));

以下过程未执行,原因是什么?也许有建议

1 个答案:

答案 0 :(得分:0)

return关键字停止函数的执行,并返回回到调用它的方法。在return语句下面写的所有内容都将被忽略。