cURL to PHP

Paste a curl command and get equivalent PHP code using curl_init, curl_setopt, and curl_exec.

curl Command

PHP (cURL)

Summary

Paste a curl command and get equivalent PHP code using curl_init, curl_setopt, and curl_exec.

How it works

  1. Paste a curl command, including one copied from a browser devtools network tab.
  2. The parser tokenizes the command, honoring quotes and backslash line continuations.
  3. Flags such as -X, -H, -d, -b, -u, -F, and -G are mapped to their curl_setopt equivalents.
  4. A JSON body is detected automatically and kept as a raw string assigned to CURLOPT_POSTFIELDS.
  5. The generated PHP script appears in the output box, ready to copy and run.

Use cases

  • Turn a "Copy as cURL" request from browser devtools into a PHP script.
  • Reproduce an API call from documentation or a support ticket in PHP.
  • Convert a curl example from a README into a starting point for an integration.
  • Debug an API call by replaying the exact request curl sent, from PHP.
  • Translate a webhook test command into a repeatable PHP script.
  • Build a quick script around a request captured from a mobile app proxy.

Frequently Asked Questions

Last updated: 2026-07-23 · Reviewed by Nham Vu