search
Homephp教程PHP源码一个简单的PHP的CURL类

我写了一个基于CURL的PHP5的类,功能比较简单,比较适合学习用。如果真要应用的话,那绝对推荐Snoopy 太强大了。虽然它不是在curl基础上的。

php代码

<?php
class my_curl {
     
    public function __construct() {
        ! extension_loaded ( &#39;curl&#39; ) && exit ( &#39;CURL扩展未加载,程序终止运行&#39; );
        header ( &#39;Content-Type: text/html; charset=utf-8&#39; );
    }
     
    public function go($url, $vars = &#39;&#39;) {
        $ch = curl_init ();
        $array [CURLOPT_URL] = $url;
        $array [CURLOPT_HEADER] = false;
        $array [CURLOPT_RETURNTRANSFER] = true;
        $array [CURLOPT_FOLLOWLOCATION] = true;
         
        if (! empty ( $vars )) {
            $postfields = $this->render_postfields ( $vars ); //生成urlcode的url
            $array [CURLOPT_POST] = true;
            $array [CURLOPT_POSTFIELDS] = $postfields;
        }
         
        //判断是否有cookie,有的话直接使用
        if ($_COOKIE [&#39;cookie_jar&#39;] || is_file ( $_COOKIE [&#39;cookie_jar&#39;] )) {
            $array [CURLOPT_COOKIEFILE] = $_COOKIE [&#39;cookie_jar&#39;]; //这里判断cookie
        } else {
            $cookie_jar = tempnam ( &#39;/tmp&#39;, &#39;cookie&#39; ); //产生一个cookie文件
            $array [CURLOPT_COOKIEJAR] = $cookie_jar; //写入cookie信息
            setcookie ( &#39;cookie_jar&#39;, $cookie_jar ); //保存cookie路径
        }
        curl_setopt_array ( $ch, $array ); //传入curl参数
        $content = curl_exec ( $ch ); //执行
        curl_close ( $ch );//关闭
        return $content; //返回
    }
     
    protected function render_postfields($vars) {
        foreach ( $vars as $key => $values ) {
            $postdata .= urlencode ( $key ) . "=" . urlencode ( $values ) . "&";
        }
        return $postdata;
    }
}
?>

使用方法

<?php
if($_POST[&#39;email&#39;]&&$_POST[&#39;password&#39;]){
    include &#39;curl_class.php&#39;;
$curl = new my_curl ();
$vars [&#39;email&#39;] = $_POST[&#39;email&#39;];
$vars [&#39;password&#39;] = $_POST[&#39;password&#39;];
//$vars [&#39;done&#39;] = &#39;/&#39;;
//$vars [&#39;submit&#39;] = &#39;登 录&#39;;
echo $curl->go ( &#39;http://www.renren.com/PLogin.do&#39;, $vars );
 
}else{
?>
<html>
    <form action="" class="login-form" id="loginForm" method="post">
        <input type="text" id="email" name="email"/>
        <input type="text" id="password" name="password"/>
        <input type="submit" tabindex="4" value="登录" class="input-submit" id="login">
    </form>
</html>
<?php }?>
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools