Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am tying to write several messages (each message created dynamically) to a device through one socket created with PHP. The first message always goes through; but, subsequent messages do not go through. To help me debug, please let me know if there is a problem with this example:

        $socket= socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
        socket_connect($socket, $ip, $port); 
        socket_write($socket, "message 1\r");
        socket_write($socket, "message 2\r");
share|improve this question
what does echo socket_strerror() give you? – pduersteler May 11 '12 at 21:22
@pduersteler placed immediately after socket_write gives a '0' or socket_strerror(socket_last_error()) gives "Unknown error: 0" – John R May 11 '12 at 22:42

1 Answer

up vote 2 down vote accepted

Have you tried adding carriage returns to the socket_write($socket, "message 1\r\n"); to the end of the message? In many cases, when working with buffers and streams, that seems to do the trick.

Something else worth giving a shot:

//all suggestions rolled into one (including Chris' chr(0) - thanks for that one)
socket_write($socket, 'message 1'."\r\n".chr(0));
usleep(5);
socket_write($socket, 'Foobar'."\r\n".chr(0));

just giving that little bit of extra time to clear the buffer can do wonders.

EDIT

Just had another brain wave: have you tried using the optional length parameter, too?

socket_write($socket, 'message 1'."\r\n".chr(0),strlen('message 1'."\r\n".chr(0)));
share|improve this answer
I will try messing with usleep(5). I am currently ending the messages with '\r'. (I will edit to reflect the '\r') – John R May 11 '12 at 21:28
@JohnR: ending with \r won't do, best to use either \n (UNIX) or \r\n (windows). \r is sort of windows-y but not quite there... so I strongly advise you to use \r\n :P – Elias Van Ootegem May 11 '12 at 21:32
In addition to the line ending suggestion, the program on the other end might be waiting for a null byte terminated chunk. $nullByte = chr(0); That had me scratching my own head last week... – chris May 11 '12 at 22:20
@chris: good point, forgot about that, I will edit my post – Elias Van Ootegem May 11 '12 at 22:26
1  
@EliasVanOotegem , Thanks! What worked for me was usleep(500000) . usleep is in microseconds, so that is half a second. I will shorten the duration some, but it fixed the problem. – John R May 11 '12 at 23:03
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.