usa esta funcion creada por mi :D
Código PHP:
function h($h1,$h2,$h4,$h3) {
$h1_Info=parse_url($h1);
if(!isset($h1_Info["port"])){
$h1_Info["port"]=80;
}
$request="GET ".$h1_Info["path"]." HTTP/1.1\n";
$request.="Host: ".$h1_Info["host"]."\n";
$request.="User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; es-ES; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11\n";
$request.="Referer: http://\n";
$request.="Keep-Alive:300\n";
$request.="Connection: keep-alive\n";
$request.="\n";
$fp = fsockopen($h1_Info["host"],$h1_Info["port"]);
fputs($fp, $request);
$result="";
while(!feof($fp)) {
$result .= fgets($fp, 128);
}
fclose($fp);
$indice=strpos($result,"\n\r\n");
$imagen=substr($result,$indice+3);
file_put_contents("".$h4."".$h2.".".$h3."",$imagen);
return "".$h4."".$h2.".".$h3."";
}
la cual la llamaras así :D
Código PHP:
$prefijo = substr(md5(uniqid(rand())),0,5);
h("http://hola.com/texto.txt",$prefijo,"subidas/","txt");
ojo, te doy la funcion que uso en mi script que se llama HostHere el cual tiene esa funcion creada por mi, el script es gratis y descargable,
Demo:
http://hosthere.dedydamy.com.ar/
Descarga:
http://dedydamyw.tk/down/click.php?id=1
Salu2!!