Issue
I'm using a framework which has curl handling encapsulated in the depths of it's class hierarchy. Basically I would like to change the way it does handle curl, without patching the files. It could be ideal if I could change curl defaults globally form outside. In php.ini or in similar way.
Any way to accomplish this?
Solution
For the most part, this can only be done with a reference to the cURL handle being used.
There is only one php.ini directive for cURL (curl.cainfo
) as of PHP 5.3.7:
http://www.php.net/manual/en/curl.configuration.php
Answered By - George Marian Answer Checked By - Clifford M. (WPSolving Volunteer)