mirror of
https://github.com/php/presentations.git
synced 2026-04-29 10:13:26 +02:00
9 lines
295 B
XML
9 lines
295 B
XML
<slide title="SSL Connection">
|
|
<blurb>cURL is very cool, when you compile PHP and cURL withh OpenSSL it
|
|
can handle HTTPS urls transparently.</blurb>
|
|
<example fontsize="1.2em"><![CDATA[<?php
|
|
$ch = curl_init ('https://www.thawte.com/');
|
|
curl_exec ($ch);
|
|
curl_close ($ch);
|
|
?>]]></example>
|
|
</slide> |