Convert cURL to PHP code

Instantly convert your cURL commands to PHP code online, with our efficient, accurate, and developer-friendly tool.

Simply paste your cURL into the input form, and we'll automatically generate the equivalent PHP code, making API testing and web scraping a breeze!

cURL Command

PHP Code

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://en.wikipedia.org/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');

$response = curl_exec($ch);

curl_close($ch);

How to Get cURL Command from Browser

  1. Open the browser and navigate to the web page that you want to send the cURL request to.
  2. Right-click on the page and select Inspect (Chrome) or Developer Tools (Firefox).
  3. In the developer tools window, navigate to the Network tab.
  4. Reload the web page.
  5. In the network tab, select the HTTP request that you want to get the cURL command for.
  6. Right-click the request and select Copy > Copy as cURL (bash).

Some additional notes:

  • If you are using a Mac, you can also use the keyboard shortcut Command+Option+C to open the Developer Tools window.
  • If you are using Windows, you can also use the keyboard shortcut Ctrl+Shift+C to open the Developer Tools window.
  • If you are using a different browser, the steps may be slightly different, but the general process is the same.

Learn More About PHP and Web Scraping

PHP is a widely-used scripting language for web development and can also be used for web scraping tasks. It offers a range of features and libraries that make it a viable choice for scraping data from websites.

If you're keen on expanding your knowledge of web scraping using PHP, consider exploring the following resources and tutorials:

Try Web Scraping API for Free for 30 Days!

Unlock the power of web scraping with 1000 free API credits and overcome IP blocking, CAPTCHAs, and anti-scraping challenges.

Get Free Credits