Multiple file uploads with cURL

前端 未结 2 885
死守一世寂寞
死守一世寂寞 2021-01-18 23:09

I\'m using cURL to transfer image files from one server to another using PHP. This is my cURL code:

// Transfer the original image and thumbnail to our stora         


        
2条回答
  •  清歌不尽
    2021-01-19 00:13

    here is your error in the curl call...

    var_dump($post)
    

    you are clobbering the array entries of your $post array since the key strings are identical...

    make this change

    $post = array(
        'upload[0]' => '@' . $tmp_uploads . $filename,
        'upload[1]' => '@' . $tmp_uploads . $thumbname,
        'salt' => 'q8;EmT(Vx*Aa`fkHX:up^WD^^b#

提交回复
热议问题