curl_init


php128 apg

INITIALIZE A cURL session.



<?php

CurlHandle
|false curl_init(?string $url null)


where,

$url = If providedthe CURLOPT_URL option will be set to its value
  
?>

 $url 


The CURLOPT_URL option will be set to its value.


  1 EXERCISE   

<?php

$c01 
curl_init();

echo 
"<b>USE of print_r:</b><br><br>";
print_r($c01);
echo 
'<br><br>';

echo 
"<b>USE of var_dump:</b><br><br>";
var_dump($c01);
echo 
'<br><br>'

// USE of echo is not permitted
// echo $c01;
  
?>

 RESULT   

USE of print_r:

CurlHandle Object ( )

USE of var_dump:

object(CurlHandle)#1 (0) { }


  2 EXERCISE   

<?php

$c02 
curl_init('localhost');

echo 
"<b>USE of print_r:</b><br><br>";
print_r($c02);
echo 
'<br><br>';

echo 
"<b>USE of var_dump:</b><br><br>";
var_dump($c02);
echo 
'<br><br>'

// USE of echo is not permitted
// echo $c02;
  
?>

 RESULT   

USE of print_r:

CurlHandle Object ( )

USE of var_dump:

object(CurlHandle)#1 (0) { }


  3 EXERCISE   

<?php

$c03 
curl_init('https://www.google.com');

echo 
"<b>USE of print_r:</b><br><br>";
print_r($c03);
echo 
'<br><br>';

echo 
"<b>USE of var_dump:</b><br><br>";
var_dump($c03);
  
?>

 RESULT   

USE of print_r:

CurlHandle Object ( )

USE of var_dump:

object(CurlHandle)#1 (0) { }

  4 EXERCISE   

<?php

$a04 
'https://google.com';

$c04 curl_init($a04);

var_dump($c04);

?>

 RESULT   

object(CurlHandle)#1 (0) { }