Tagged Questions
1
vote
1answer
223 views
Save php output into variable when using fsockopen
I'm trying to build a php script, which connects to a telnet server and runs a few commands.
I would like to save the returned output of a command into a variable.
Example:
Command: Give me a ...
0
votes
0answers
36 views
fsockopen - ignore automatic data sent from the server
I have a bit of code, below, which connects to the server and then I send an xml command which causes the server to send me the requested data in xml format.
My issue is that when the fsockopen ...
0
votes
1answer
224 views
newsgroup nntp protocol talk with fsockopen - how to get size
In the code below I can get a list of "message-id"s in a group I selected earlier.
Now with that info I can retreive the header with
head "message-ID"
how do I find out what the size of the article ...
1
vote
1answer
586 views
Rewriting some code using fsockopen to use curl instead
My host doesn't allow fsockopen, but it does allow curl. I'm happy using curl from the cli, but haven't had to use it with PHP much. How do I write this using curl instead?
$xmlrpcReq and Length are ...
