leopb17 0 Denunciar post Postado Abril 6, 2013 Estou usando o código: $file = "http://minecraft.net/skin/Leeoow.png"; $onde = "uploads/Leeoow.png"; if(!copy($file, $onde)) { echo "NÃO ENVIO!"; }else { echo "ENVIOU! aê!"; }A imagem sempre retorna a 0kb em meu host.. qual seria o erro? Compartilhar este post Link para o post Compartilhar em outros sites
Kakashi_Hatake 267 Denunciar post Postado Abril 6, 2013 Usando cURL $url = 'http://www.onaruto.com.br/naruto/m/chibi_kakashi.jpg'; $ch = curl_init( $url ); curl_setopt( $ch, CURLOPT_HEADER, false ); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $ch, CURLOPT_BINARYTRANSFER, true ); $bImg = curl_exec( $ch ); curl_close( $ch ); $fp = fopen( 'image.jpg', 'w' ); fwrite( $fp, $bImg ); fclose( $fp ); Compartilhar este post Link para o post Compartilhar em outros sites
leopb17 0 Denunciar post Postado Abril 6, 2013 Usando cURL $url = 'http://www.onaruto.com.br/naruto/m/chibi_kakashi.jpg'; $ch = curl_init( $url ); curl_setopt( $ch, CURLOPT_HEADER, false ); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $ch, CURLOPT_BINARYTRANSFER, true ); $bImg = curl_exec( $ch ); curl_close( $ch ); $fp = fopen( 'image.jpg', 'w' ); fwrite( $fp, $bImg ); fclose( $fp ); Não entendo.. mas no host, ele continua com 0kb!! Compartilhar este post Link para o post Compartilhar em outros sites