本文整理汇总了PHP中RequestUtil::getCurlHandle方法的典型用法代码示例。如果您正苦于以下问题:PHP RequestUtil::getCurlHandle方法的具体用法?PHP RequestUtil::getCurlHandle怎么用?PHP RequestUtil::getCurlHandle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RequestUtil
的用法示例。
在下文中一共展示了RequestUtil::getCurlHandle方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getContents
/**
* Wrapper for file_get_contents that attempts to use CURL if allow_url_fopen is disabled.
*
* @param string|RequestUtil $source
* @param type $url
* @return type
* @throws Exception
*/
public static function getContents($source, $use_include_path = false, $context = null)
{
if (self::tryCurl($source instanceof RequestUtil ? $source->url : $source)) {
if ($source instanceof RequestUtil) {
$ch = $source->getCurlHandle();
} else {
$ch = self::curlInit($source, $context);
}
return @curl_exec($ch);
} else {
if ($source instanceof RequestUtil) {
$context = $source->getStreamContext();
$source = $source->url;
}
// Use the usual copy method
return @file_get_contents($source, $use_include_path, $context);
}
}