2010-08-15 7 views
-5

pouvez-vous convertir ce code Perl en code PHP?Perl to Php Translation

use HTTP::Request::Common qw(POST); 
use LWP::UserAgent; 
$ua = new LWP::UserAgent(agent => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.5) Gecko/20060719 Firefox/1.5.0.5'); 
$ua -> timeout(0.5); 
my $req = POST 'http://forums.shooshtime.com/', 
[ vb_login_username => 'mehdi' , vb_login_password => '***' , go => 'submit']; 
my $content = $ua->request($req); 

Merci à l'avance.

+2

Jetez un coup d'œil à la [bibliothèque cURL] (http://php.net/manual/fr/book.curl.php). – Aillyn

+0

Entré après qu'il a été fermé. cURL est une solution sous-optimale. Aurait aimé voir une autre réponse qui ne l'utilise pas. –

Répondre

2

C'est parti. Code complet converti en PHP:

<?php 
//set URL 
$url = 'http://forums.shooshtime.com/'; 

//set POST variables 
$fields = array(
    'vb_login_username' => 'mehdi', 
    'vb_login_password' => '***' , 
    'go' => 'submit' 
       ); 

// set user agent 
$useragent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.5) Gecko/20060719 Firefox/1.5.0.5'; 

//open connection 
$ch = curl_init(); 

//set the url, POST data, UserAgent, Timeout, etc. 
curl_setopt($ch, CURLOPT_URL,$url); 
curl_setopt($ch, CURLOPT_POST, 1); 
curl_setopt($ch, CURLOPT_POSTFIELDS,$fields); 
curl_setopt($ch, CURLOPT_USERAGENT, $useragent); 
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT_MS, 500); //time out of 0.5 seconds. 

//execute post 
$content = curl_exec($ch); 

//close connection 
curl_close($ch); 
?>