如何在opencart中获取POST方法的产品图像

时间:2018-02-09 04:16:13

标签: php opencart

我需要POST方法的产品图片如何获得我尝试过的这些数据但我没有收到请查看我的代码并帮助我,我是一个新的opencart。

这里是我的控制器文件代码:controller / product / product.php

//------first type-------//

$fields = array(
                'image' => urlencode($_POST['image'])
                );
//------first type close-------//

//------2nd type-------//
           if (isset($this->request->post['image'])) {
                    $data['image'] = $this->request->post['image'];
                } else {

                   $data['image'] = $this->request->post['image'];
            }
//------2nd type close-------//

0 个答案:

没有答案