Serial comm with PHP on Windows - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T15:55:56Z http://stackoverflow.com/feeds/question/627965 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/627965/serial-comm-with-php-on-windows 1 Serial comm with PHP on Windows SyaZ 2009-03-09T20:45:05Z 2009-07-02T13:25:01Z <p>Greetings all.</p> <p>I am looking for a way to communicate with RS232 serial COM port on windows. I have found 2 solutions on the net, <a href="http://www.easyvitools.com/phpserial/index.html" rel="nofollow">one</a> which is not totally free (introduces deliberate delays on the function) and <a href="http://www.phpclasses.org/browse/package/3679.html" rel="nofollow">another</a> with limited capability on Windows. The latter can only write to a COM port on Windows, not read.</p> <p>I can't look at the code of the first solution since it is compiled into a .dll (makes sense, otherwise people can just edit the delay and not purchase it...) and the second one seems only to use fopen() to open the port and later fwrite() to it for writing, just like one would do to a stream. But apparently freading it returns nothing.</p> <p>I know it's possible as the first solution did it, although it does require Apache to use php-cgi module instead of php5module.</p> <p>Any ideas?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/627965/serial-comm-with-php-on-windows/627992#627992 4 Answer by SoapBox for Serial comm with PHP on Windows SoapBox 2009-03-09T20:50:55Z 2009-03-09T20:50:55Z <p>The easiest way to tackle this would be to write a program in another language (such as C++) and then execute it from your php script with <code>system()</code>. Doing Comm I/O in C++ is trivial.</p> <p>This assumes you have enough access to the server to configure it to allow the executable to be run by php, etc.</p> http://stackoverflow.com/questions/627965/serial-comm-with-php-on-windows/628033#628033 2 Answer by lpfavreau for Serial comm with PHP on Windows lpfavreau 2009-03-09T21:02:54Z 2009-03-09T21:02:54Z <p>Another possible way would be to use the Win32 API through something like <a href="http://www.php.net/w32api%5Fregister%5Ffunction" rel="nofollow"><code>w32api_register_function()</code></a> or <a href="http://pecl.php.net/package/ffi" rel="nofollow">ffi</a> and then use <a href="http://msdn.microsoft.com/en-us/library/ms810467.aspx" rel="nofollow">serial communications calls</a> to get it to work under Windows.</p> http://stackoverflow.com/questions/627965/serial-comm-with-php-on-windows/726639#726639 0 Answer by Tracker1 for Serial comm with PHP on Windows Tracker1 2009-04-07T16:53:55Z 2009-04-07T16:53:55Z <p>Another option is to use an object via ActiveX on windows. There are several, mostly commercial serial objects for COM on windows. You can also expose a .Net based object and register it for COM use as well. Of course, this does presume you have control on the server to register a COM control, as you would need a serial interface.</p> <p>Another issue is resource contention if this is for use via the Web. If this is for a serial printer, for instance, then a print queue manager would be your best option over direct communication.</p> http://stackoverflow.com/questions/627965/serial-comm-with-php-on-windows/1074273#1074273 1 Answer by Giorgos Pap for Serial comm with PHP on Windows Giorgos Pap 2009-07-02T13:14:14Z 2009-07-02T13:25:01Z <h1>You need to set the com with a dos command like like:</h1> <p>$output = &#96;mode COM1: BAUD=115200 PARITY=N data=8 stop=1 XON=off TO=on &#96;; </p> <h1>The next command executes the dos command through php:</h1> <p>echo"$output"; </p> <h1>Create the resource id:</h1> <p>$fp = fopen('COM1', 'r+');</p> <p>if(!$fp){</p> <p>echo"Port not accessible";</p> <p>}else{</p> <p>echo"Port COM1 opened successfully";</p> <p>}</p> <h1>Write to port:</h1> <p>$writtenBytes = fputs($fp, "Hello");</p> <p>echo"Bytes written to port: $writtenBytes";</p> <h1>Read from port:</h1> <p>$buffer = fgets($fp);</p> <p>echo"Read from buffer: $buffer";</p> <h1>Maybe somebody help me with the fgets problem. It stacks there for exactly one minute if TO=on or stacks there forever if TO=off. It seems to be a "MODE COM" option so maybe a DOS expert can help.</h1>