lookjapan.COM - IRC ve mIRC dünyasının forumu!

lookjapan.COM - IRC ve mIRC dünyasının forumu! (http://www.lookjapan.com/index.php)
-   PHP Hazır Kodlar (http://www.lookjapan.com/forumdisplay.php?f=302)
-   -   Curl ile Twitpic sitesine resim upload etmek (http://www.lookjapan.com/showthread.php?t=3967)

Mattet 26 Ağustos 2016 13:23

Curl ile Twitpic sitesine resim upload etmek
 
PHP- Kodu:

$file $_FILES['media'];  

if (!
in_array($file['type'], array('image/png','image/jpeg','image/gif'))) { [/B] [B
echo 
'<span style="color:#CC0000;">Not a valid file type, please upload PNG, JPEG or GIF images only.</span>';  
exit;  
}  

$postfields = array(); [/B] [B
$postfields['username'] = $username;  
$postfields['password'] = $password;  
$postfields['media'] = "@$file['tmp_name']"

$twitter_url 'http://twitpic.com/api/upload'; [/B] [B
$curl curl_init();  
curl_setopt($curlCURLOPT_CONNECTTIMEOUT2);  
curl_setopt($curlCURLOPT_HEADERfalse);  
curl_setopt($curlCURLOPT_RETURNTRANSFER1);  
curl_setopt($curlCURLOPT_BINARYTRANSFER1);  
curl_setopt($curlCURLOPT_URL$twitter_url);  
curl_setopt($curlCURLOPT_POST3);  
curl_setopt($curlCURLOPT_POSTFIELDS$postfields);  
$result curl_exec($curl);  
curl_close($curl);  
$login_xml = new SimpleXMLElement($result);  
if (isset(
$login_xml->error)) {  
print_r($login_xml);  
} else {  
print_r($login_xml);  




All times are GMT +3. The time now is 15:16.

Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.