yishuixm / tools-lib

工具库

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

"# tools-lib"

Example of use:

'http://www.google.com', 'host' => '', 'header' => '', 'method' => 'GET', // 'POST','HEAD' 'referer' => '', 'cookie' => '', 'post_fields' => '', // 'var1=value&var2=value 'timeout' => 20 ); $this->curl->init($params); $result = $this->curl->exec(); if ($result['curl_error']) throw new Exception($result['curl_error']); if ($result['http_code']!='200') throw new Exception("HTTP Code = ".$result['http_code']); if (!$result['body']) throw new Exception("Body of file is empty"); ............... } catch (Exception $e) { echo $e->getMessage(); } ?>

About

工具库


Languages

Language:PHP 100.0%