php 卷曲错误处理程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 卷曲错误处理程序相关的知识,希望对你有一定的参考价值。

<?php

try {
		    $curl = curl_init();

		    if (FALSE === $curl)
		        throw new Exception('failed to initialize');

			curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
			curl_setopt($curl, CURLOPT_URL, $url);

		    $content = curl_exec($curl);

		    if (FALSE === $content)
		        throw new Exception(curl_error($curl), curl_errno($curl));

		    return $content;

		} catch(Exception $e) {

		    trigger_error(sprintf(
		        'Curl failed with error #%d: %s',
		        $e->getCode(), $e->getMessage()),
		        E_USER_ERROR);

		}

以上是关于php 卷曲错误处理程序的主要内容,如果未能解决你的问题,请参考以下文章

卷曲错误:没有路由到主机

Internet Explorer 上的 CSS 错误阴影效果(纸张卷曲)

卷曲错误:如何重新启用它?(Facebook Auth)

卷曲错误无法解析主机:saved_report.xml;没有请求类型的数据记录"

php 卷曲 - PHP认证

php 卷曲类PHP