Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个执行 HTTP 发布的 php 脚本。到目前为止,它按预期工作,但我没有处理所有可能的错误(例如超时、无效的 http 地址)。
进行调用的语句是:
$result = curl_exec($ch); if($result === false) { return 'Error'; } else { return $result; }
这是处理可能错误的正确方法还是我应该使用更复杂的方法?
你应该看看 curl_error
http://www.php.net/manual/en/function.curl-error.php