Ben curl falan işin aşağıdaki kodu yapmaya çalışıyorum. Zaten düzelene bir göz almış fsockopen conversion ama o çalışmıyor. Bu fsockopen dışında kod eserler benim ana devre dışı bırakılır. Herhangi bir yardım takdir edilecektir.
$host = substr($hostport,0,50);
$port = substr($hostport,50,10);
$issecure = substr($hostport,60,1);
if($issecure=="Y")
{
$host = "ssl://".$host;
}
$fsok = fsockopen(trim($host) , intval(trim($port)));
if(FALSE == $fsok )
{
echo "Target Host not Found/Down"; return ;
}
fwrite($fsok, $bodyData );
$port ='';$host ='';$hostport= '';$bodyData='';
while ($line = fread($fsok, 25000))
{
echo $line;
}
fclose($fsok);
return $line;