Bazı durumlarda herhangi bir web sitesindeki bir dosyayı sunucunuza indirmeniz gerekebilir. Bu işlemi php curl ile kolay bir şekilde yapabilirsiniz.
[code]<?php $url = “http://www.google.com.tr/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png”; $file = fopen(“glogo.png”,”w”); $curl = curl_init(); curl_setopt($curl,CURLOPT_URL,$url); curl_setopt($curl,CURLOPT_FILE,$file); curl_exec($curl); curl_close($curl); fclose($file); ?>[/code]
Kategoriler