CommunicationProvider
in package
Class CommunicationProvider is for internal use to communicate with FileMaker Server.
Tags
Table of Contents
Methods
- _createCurlHandle() : CurlHandle
- To create and configure cURL at a single place, avoiding code redundancy.
Methods
_createCurlHandle()
To create and configure cURL at a single place, avoiding code redundancy.
private
_createCurlHandle([string|null $url = null ][, bool $returnTransfer = true ]) : CurlHandle
If later we need some specific settings for some cases, then add new parameters to this function.
Parameters
- $url : string|null = null
-
The URL you want to access.
- $returnTransfer : bool = true
-
By default, sets CURLOPT_RETURNTRANSFER to
true
. But it can be set to false if needed.