How can I use the curl_init function to initialize a cURL session in PHP? Example code: - Biz Tech

How can I use the curl_init function to initialize a cURL session in PHP? Example code:

Listen
$ch = curl_init();

// Set options and perform request

curl_close($ch);