Click here to Skip to main content
15,888,283 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
the code is:

function Synomize($Text,$Flag=2500,$Host="127.0.0.1")
if(!$Flag)
$Flag=0 $sock = fsockopen ($Host, 4396, $errno, $errstr);
echo("$errno($errstr)");
else
{
fputs ($sock, "20010,0,$Flag,$Text");
$result=fread ($sock,1000000);
fclose($sock);
return $result;
}
}
?>


function Synomize should call the other windows program, that have win api
Posted
Updated 24-Jun-15 21:10pm
v2
Comments
Member 11791167 26-Jun-15 2:17am    
guru, help please)

1 solution

you might want to see this:

Need to convert PHP Code to C#[^]
 
Share this answer
 
Comments
Member 11791167 25-Jun-15 6:23am    
thanks, but quite another code

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900