put('https://httpbin.org/put', [ 'id' => '1', 'first_name' => 'Zach', 'last_name' => 'Borboa', ]); if ($curl->error) { echo 'Error: ' . $curl->errorMessage . "\n"; } else { echo 'Data server received via PUT:' . "\n"; var_dump($curl->response->form); }