Heim  >  Artikel  >  Backend-Entwicklung  >  php实战第十四天_PHP教程

php实战第十四天_PHP教程

WBOY
WBOYOriginal
2016-07-14 10:11:161277Durchsuche

今天学会了curl扩展的函数.写了一个 httpPost函数,恩是有效的,这个我想可以利用来做在线更新.或者是在线下载远程的资源.

[php]
echo httpPost("http://bbs.125.la/member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes&lssubmit=yes&inajax=1", 
               array ( 
                    "handlekey" => "ls", 
                    "password" => "123456", 
                    "quickforward" => "yes", 
                    "username" => "admin" 
            )); 
 
function httpPost($url,$sendData) 

 
 
    $ch = curl_init(); 
    curl_setopt($ch, CURLOPT_URL, $url); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
    // 我们在POST数据哦!  
    curl_setopt($ch, CURLOPT_POST, 1); 
    // 把post的变量加上  
    curl_setopt($ch, CURLOPT_POSTFIELDS, $sendData); 
    $output = curl_exec($ch); 
    curl_close($ch); 
    return $output; 

echo httpPost("http://bbs.125.la/member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes&lssubmit=yes&inajax=1",
      array (
        "handlekey" => "ls",
        "password" => "123456",
        "quickforward" => "yes",
        "username" => "admin"
   ));

function httpPost($url,$sendData)
{


 $ch = curl_init();
 curl_setopt($ch, CURLOPT_URL, $url);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 // 我们在POST数据哦!
 curl_setopt($ch, CURLOPT_POST, 1);
 // 把post的变量加上
 curl_setopt($ch, CURLOPT_POSTFIELDS, $sendData);
 $output = curl_exec($ch);
 curl_close($ch);
 return $output;
}

以下是标准的mysql查询数据并组合成数组的代码
[php]
$conn=mysql_connect('localhost','root','1234'); 
mysql_select_db('kefei'); 
mysql_query("set names utf8"); 
$result=mysql_query("select * from liuyan"); 
$arr=array(); 
while($row=mysql_fetch_assoc($result)){ 
    $arr[]=$row 

var_dump($arr); 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477369.htmlTechArticle今天学会了curl扩展的函数.写了一个 httpPost函数,恩是有效的,这个我想可以利用来做在线更新.或者是在线下载远程的资源. [php] echo httpPost(...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php实战第十六天_PHP教程Nächster Artikel:php 字符串函数_PHP教程