vote up 1 vote down star

Hello, I am trying to send something to serial port (r232) with PHP. I am using this class: http://www.phpclasses.org/browse/package/3679.html

The problem is that I am allowed to send only 1 byte. But if I send something like "1", I am actually sending 49 (ASCII for 1). Instead of send("1"), I tried with send(1) but it is no good, because this is integer which has 2 bytes. So is there a way to send a "real" char, not ASCII equivalent?

flag

75% accept rate
I get the feeling PHP might not be the best language for this, I've done a little research and come up with nothing. – Ross Apr 10 at 21:16
There is no "real character". Computers only understand 0 and 1, not "A", "B" or "C". (Please read the first part of [Joel Spolskys nice but way too long Unicode article](joelonsoftware.com/articles/Unicode.html/…). It will explain character sets in great detail.) – Christian DavĂ©n Apr 11 at 14:51

3 Answers

vote up 4 vote down check

The chr() function returns a character given by the integer for the corresponding ascii character.

link|flag
It returns a character, but as a PHP string. That won't help the OP – Alan Storm Apr 10 at 21:53
Doesn't the library take a PHP string? It passes it into fwrite... – Mark Apr 11 at 20:49
vote up 0 vote down

It looks like the library is expecting characters as input. If you need to send the character which would encode to 0x01, you just send "\001". The function chr() would convert characters to integer values and would be no use here.

One more thing: The byte size of integers depends on the underlying system and is mostly 4 bytes.

link|flag
Not so. ord() converts characters to integer values, and chr() does the opposite. – Mark Apr 10 at 21:20
vote up 0 vote down

I'm not sure what you are trying to accomplish. Are you trying to to send the integer 1? Not being familiar with the class, have you tried to give just the value 1 as an argument? If that doesn't work, try to wrap it with the chr() function.

link|flag

Your Answer

Get an OpenID
or

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